Makefile 748 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. target = foo
  2. cflags = -g
  3. ldflags = -lm
  4. cc = gcc
  5. src = $(shell find src/ -name '*.c' -not -name 'main.c')
  6. obj = $(src:.c=.o)
  7. tests=$(shell find tests/ -name '*.c')
  8. tests_bin=$(tests:.c=.bin)
  9. all: $(target)
  10. $(target): $(obj) src/main.o
  11. $(cc) $(cflags) $(ldflags) -o $@ $^
  12. test: $(tests_bin)
  13. @echo
  14. @echo "Run tests:"
  15. @scripts/runall.sh $^
  16. $(obj):%.o:%.c
  17. $(cc) -c $(cflags) $< -MD -MF $@.d -o $@
  18. src/main.o:src/main.c
  19. $(cc) -c $(cflags) $< -MD -MF $@.d -o $@
  20. $(tests_bin):%.bin:%.c $(obj)
  21. $(cc) -Isrc/ $(cflags) $(ldflags) $< $(obj) -MD -MF $@.d -o $@
  22. clean:
  23. -rm $(shell find tests/ -name '*.bin')
  24. -rm $(shell find . -name '*.o' -or -name '*.d')
  25. -rm $(target)
  26. DEPS := $(shell find . -name *.d)
  27. ifneq ($(DEPS),)
  28. include $(DEPS)
  29. endif