head 1.2; access; symbols; locks; strict; comment @# @; 1.2 date 2002.01.26.20.12.19; author rse; state dead; branches; next 1.1; 1.1 date 2002.01.25.15.25.51; author rse; state Exp; branches; next ; desc @@ 1.2 log @switch to our standard build environment @ text @ CC = /usr/opkg/bin/gcc CFLAGS = -Wall -O2 -I. LDFLAGS = AR = ar RANLIB = ranlib all: libex.a ex_test ex_test: ex_test.o libex.a $(CC) $(LDFLAGS) -o ex_test ex_test.o libex.a libex.a: ex.o rm -f $@@ $(AR) cr $@@ ex.o $(RANLIB) $@@ clean: rm -f ex_test *.a *.o *.core check: ex_test ./ex_test @ 1.1 log @Welcome OSSP ex, another new-born OSSP library. This is the first cut for a C exception handling library. Read ex.pod for details... @ text @@