aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authoriperry <iperry@749a229e-a60e-11de-b98f-4500b42dc123>2010-01-10 07:58:30 +0000
committeriperry <iperry@749a229e-a60e-11de-b98f-4500b42dc123>2010-01-10 07:58:30 +0000
commit06576660b9799cef5206208dd2be3cdb4faf18a5 (patch)
treeabede1b8c4cd7fe908dc059354332ccc67dc38cd /Makefile
parent5ca8a80d1fbfb889f0971ed0a3594e5b3266e92e (diff)
downloadlibrambutan-06576660b9799cef5206208dd2be3cdb4faf18a5.tar.gz
librambutan-06576660b9799cef5206208dd2be3cdb4faf18a5.zip
git-svn-id: https://leaflabs.googlecode.com/svn/trunk/library@107 749a229e-a60e-11de-b98f-4500b42dc123
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 $@