#OBJS=enum.o foo.o bar.o
OBJS=enum.o

CFLAGS=-g

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

clean:
	rm -f $(OBJS)

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