From b9b5e343accd95b476a8a80e0b713521c7eb6974 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 4 Jan 2025 00:09:20 +0200 Subject: calculator works on constant string --- Makefile | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1afd6d9 --- /dev/null +++ b/Makefile @@ -0,0 +1,46 @@ +.PHONY: all +all: setup + $(MAKE) -f scripts/makefile + +# this kicks all unrecognised targets to the client script. +# note that trying to compile individual files, e.g. +# +# make kernel.elf +# +# will not work, you would need +# +# make -f scripts/makefile kernel.elf +# +# instead +.DEFAULT: setup + $(MAKE) -f scripts/makefile $< + +.PHONY: analyze +analyze: setup + CC='gcc -fanalyzer' SKIP_ANALYZER='-fno-analyzer' $(MAKE) CROSS_COMPILE= + +.PHONY: setup +setup: deps + @echo -n > deps.mk + @./scripts/gen-deps -p CALC -c COMPILE_CALC -b calc "$(CALC_SOURCES)" + +CLEANUP := build deps.mk calc +CLEANUP_CMD := +CALC_SOURCES := + +include src/source.mk + +.PHONY: check +check: all + $(MAKE) -C tests -k check + +RM = rm + +.PHONY: clean +clean: + $(RM) -rf $(CLEANUP) + $(MAKE) -C deps/ejit clean + +.PHONY: deps +deps: + $(MAKE) -C deps/ejit -- cgit v1.2.3