diff options
author | iperry <iperry@749a229e-a60e-11de-b98f-4500b42dc123> | 2010-01-10 07:58:30 +0000 |
---|---|---|
committer | iperry <iperry@749a229e-a60e-11de-b98f-4500b42dc123> | 2010-01-10 07:58:30 +0000 |
commit | 06576660b9799cef5206208dd2be3cdb4faf18a5 (patch) | |
tree | abede1b8c4cd7fe908dc059354332ccc67dc38cd /Makefile | |
parent | 5ca8a80d1fbfb889f0971ed0a3594e5b3266e92e (diff) | |
download | librambutan-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-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 $@ |