Makefile 231 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 TARGET = rspcode OBJECTS = rspcode.o CFILE = rspcode.c LCOPTS = -g LCFLAGS = $(LCOPTS) $(LCINCS) defaults: $(TARGET) .c.o: cc $(LCFLAGS) -c $< rspcode: rspcode.o cc -o $@ $^ $(LCOPTS) clean: rm -rf $(OBJECTS) $(TARGET)