123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- target = fvm
- # cflags = -g -fsanitize=address -fno-omit-frame-pointer
- # ldflags = -lm -fsanitize=address -fno-omit-frame-pointer
- cflags = -g
- ldflags = -lm
- cc = gcc
- csc = chicken-csc
- src = $(shell find src/ -name '*.c' -not -name '*main.c')
- obj = $(src:.c=.o)
- tests=$(shell find tests/ -name '*.c')
- tests_bin=$(tests:.c=.bin)
- all: $(target)
- full: all $(tests_bin)
- $(target): $(obj) src/main.o
- $(cc) $(cflags) $(ldflags) -o $@ $^
- buildtest: $(tests_bin)
- test: buildtest
- @echo
- @echo "Run tests:"
- @scripts/runall.sh $(tests_bin)
- $(obj):%.o:%.c
- $(cc) -c $(cflags) $< -MD -MF $@.d -o $@
- src/main.o:src/main.c
- $(cc) -c $(cflags) $< -MD -MF $@.d -o $@
- $(tests_bin):%.bin:%.c $(obj)
- $(cc) -Isrc/ $(cflags) $(ldflags) $< $(obj) -MD -MF $@.d -o $@
- clean:
- -rm $(shell find tests/ -name '*.bin')
- -rm $(shell find . -name '*.o' -or -name '*.d')
- -rm $(target)
- DEPS := $(shell find . -name *.d)
- ifneq ($(DEPS),)
- include $(DEPS)
- endif
|