# +mkmake+ -- Everything after this line is automatically generated EXECUTABLES = histogram mydc CC = gcc CLASSDIR = /home/plank/cs140 INCLUDE = -I$(CLASSDIR)/include CFLAGS = -g $(INCLUDE) LIBDIR = $(CLASSDIR)/objs OBJS = $(LIBDIR)/stack.o $(LIBDIR)/queue.o $(LIBDIR)/libfdr.a all: $(EXECUTABLES) clean: rm -f core *.o $(EXECUTABLES) a.out .SUFFIXES: .c .o .c.o: $(CC) $(CFLAGS) -c $*.c histogram: histogram.o $(CC) $(CFLAGS) -o histogram histogram.o $(OBJS) mydc: mydc.o $(CC) $(CFLAGS) -o mydc mydc.o $(OBJS)