Makefile 1015 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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) fvm-as
  13. fvm-as: $(obj) src/as_main.c
  14. $(cc) $(cflags) $(ldflags) $^ -o $@
  15. full: all $(tests_bin)
  16. $(target): $(obj) src/main.o
  17. $(cc) $(cflags) $(ldflags) -o $@ $^
  18. buildtest: $(tests_bin)
  19. test: buildtest
  20. @echo
  21. @echo "Run tests:"
  22. @scripts/runall.sh $(tests_bin)
  23. $(obj):%.o:%.c
  24. $(cc) -c $(cflags) $< -MD -MF $@.d -o $@
  25. src/main.o:src/main.c
  26. $(cc) -c $(cflags) $< -MD -MF $@.d -o $@
  27. $(tests_bin):%.bin:%.c $(obj)
  28. $(cc) -Isrc/ $(cflags) $(ldflags) $< $(obj) -MD -MF $@.d -o $@
  29. clean:
  30. -rm $(shell find tests/ -name '*.bin')
  31. -rm $(shell find . -name '*.o' -or -name '*.d')
  32. -rm $(target)
  33. DEPS := $(shell find . -name *.d)
  34. ifneq ($(DEPS),)
  35. include $(DEPS)
  36. endif