aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorPerry Hung <iperry@alum.mit.edu>2010-07-08 01:06:33 -0400
committerPerry Hung <iperry@alum.mit.edu>2010-07-08 01:06:33 -0400
commit0b502bb6d88e0e3efd48470de92bb4b4a959722f (patch)
tree66ff51c6eadbd014a73a56e389195740853cce57 /Makefile
parentbb7c1d12f54c2befc5632719ec4ad17c9e4d1215 (diff)
downloadlibrambutan-0b502bb6d88e0e3efd48470de92bb4b4a959722f.tar.gz
librambutan-0b502bb6d88e0e3efd48470de92bb4b4a959722f.zip
Fix ram, flash, jtag targets
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile32
1 files changed, 16 insertions, 16 deletions
diff --git a/Makefile b/Makefile
index 51123ba..64fcd20 100644
--- a/Makefile
+++ b/Makefile
@@ -28,10 +28,7 @@ VENDOR_ID = 1EAF
PRODUCT_ID = 0003
# Force a rebuild if the maple target changed
-PREV_BUILD_TYPE := $(shell cat $(BUILD_PATH)/build-type 2>/dev/null)
-ifneq ($(PREV_BUILD_TYPE), $(MAPLE_TARGET))
- $(shell rm -rf $(BUILD_PATH))
-endif
+PREV_BUILD_TYPE = $(shell cat $(BUILD_PATH)/build-type 2>/dev/null)
# Some target specific things
ifeq ($(MAPLE_TARGET), ram)
@@ -66,14 +63,17 @@ $(foreach m,$(LIBMAPLE_MODULES),$(eval $(call LIBMAPLE_MODULE_template,$(m))))
# Main target
include support/make/build-targets.mk
-# Fake targets
-POSSIBLE_TARGETS := install sketch clean help debug cscope tags ctags ram flash jtag
-.PHONY: $(POSSIBLE_TARGETS)
+.PHONY: install sketch clean help debug cscope tags ctags ram flash jtag
install: sketch
$(UPLOAD)
-sketch: MSG_INFO $(BUILD_PATH)/$(BOARD).bin
+build-check:
+ifneq ($(PREV_BUILD_TYPE), $(MAPLE_TARGET))
+ $(shell rm -rf $(BUILD_PATH))
+endif
+
+sketch: build-check MSG_INFO $(BUILD_PATH)/$(BOARD).bin
clean:
rm -rf build
@@ -82,8 +82,11 @@ help:
@echo ""
@echo " libmaple Makefile help"
@echo " ----------------------"
- @echo " Compile targets:"
- @echo " sketch: Compile sketch code"
+ @echo " Compile targets (default MAPLE_TARGET=flash):"
+ @echo " ram: Compile sketch code to ram"
+ @echo " flash: Compile sketch code to flash"
+ @echo " jtag: Compile sketch code to jtag"
+ @echo " sketch: Compile sketch code to target MAPLE_TARGET"
@echo " "
@echo " Programming targets:"
@echo " install: Upload code to target"
@@ -110,13 +113,10 @@ ctags:
@echo "Made tags file for VIM code browsing"
ram:
- @env - MAPLE_TARGET=ram
- @echo "Memory target set to RAM for this session"
+ $(MAKE) MAPLE_TARGET=ram --no-print-directory
flash:
- @env - MAPLE_TARGET=flash
- @echo "Memory target set to FLASH for this session"
+ $(MAKE) MAPLE_TARGET=flash --no-print-directory
jtag:
- @env - MAPLE_TARGET=jtag
- @echo "Memory target set to JTAG for this session"
+ $(MAKE) MAPLE_TARGET=jtag --no-print-directory