Makefile 848 B

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