Makefile 939 B

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