aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0c20b9e..13cfd3a 100644
--- a/Makefile
+++ b/Makefile
@@ -103,8 +103,6 @@ MSG_ASSEMBLING = Assembling:
MSG_CLEANING = Cleaning project:
MSG_FLASH = Creating load file for Flash:
-$(BUILD_PATH):
- mkdir -p build
_COBJ = $(moop:.c=.o)
_CPPOBJ = $(boop:.cpp=.o)
@@ -113,6 +111,7 @@ CPPOBJ = $(patsubst %, $(BUILD_PATH)/%,$(_CPPOBJ))
.PHONY: run cscope clean info
+
info:
@echo "Maple library help"
@echo "------------------:"
@@ -128,6 +127,9 @@ info:
all: info
+$(BUILD_PATH):
+ mkdir -p build
+
$(OUTDIRS):
@echo Making directory $@
mkdir -p $@