CFLAGS += -g3 -rdynamic -fexceptions -lm
LDFLAGS += -g3 -rdynamic -fexceptions -lm

backtrace: backtrace.c

clean:
	@rm -f *.o

tar:	clean
	@rm -f backtrace
	$(shell bn=`basename $$PWD`; cd ..; tar -zcf $$bn.tgz $$bn)
