CFLAGS=-g

# These need to be linked against the library
LIBOBJS=stacktest getrettest

# These do not
OBJS=ftest1 ftest2 ftest3

all: $(OBJS) $(LIBOBJS)

$(LIBOBJS): 
	    $(CC) $(CFLAGS) $@.c -o $@ -L.. -ldebauch
clean:
	/bin/rm $(OBJS) $(LIBOBJS)

