Makefile 315 B

123456789101112131415161718192021
  1. STD=
  2. WARN= -Wall
  3. OPT= -Os
  4. R_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS)
  5. R_LDFLAGS= $(LDFLAGS)
  6. DEBUG= -g
  7. R_CC=$(CC) $(R_CFLAGS)
  8. R_LD=$(CC) $(R_LDFLAGS)
  9. linenoise.o: linenoise.h linenoise.c
  10. linenoise_example: linenoise.o example.o
  11. $(R_LD) -o $@ $^
  12. .c.o:
  13. $(R_CC) -c $<
  14. clean:
  15. rm -f linenoise_example *.o