From 85fdaf22994ead86a43b4880cb4875094612bd72 Mon Sep 17 00:00:00 2001 From: Aleksa Vučković Date: Sun, 16 Jan 2022 14:37:35 +0100 Subject: Recompiling when included header files change --- src/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/Makefile (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..91c565b --- /dev/null +++ b/src/Makefile @@ -0,0 +1,11 @@ +.PHONY: all build_as build_c + +all: build_as build_c + +build_as: + $(MKDIR) $(AS_OBJECT_DIR) + @$(MAKE) --directory as + +build_c: + $(MKDIR) $(C_OBJECT_DIR) + @$(MAKE) --directory c -- cgit v1.2.3