Bringing over second loose unchecked copy of this code (pre-svn update)

This commit is contained in:
2011-07-16 23:04:25 -07:00
parent bcb0d6232d
commit 04fb251fe8
4 changed files with 328 additions and 79 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
CC=gcc
LD=gcc
OBJECTS=exclib.o exception_test.o
all: exception_test
%.o: %.c
$(CC) -c -o $@ $(CFLAGS) -rdynamic -ggdb -gstabs $<
exception_test: $(OBJECTS)
$(LD) -o exception_test $(OBJECTS)
.PHONY: clean
clean:
rm -f *.o
rm -f exception_test