OBJS=enum.o foo.o bar.o

CFLAGS=-g -DNDEBUG

enum: $(OBJS)
	cc -o enum $(OBJS)

clean:
	rm -f $(OBJS)

vclean:
	rm -f $(OBJS) $(TARGETS)
