diff options
author | Perry Hung <iperry@alum.mit.edu> | 2010-07-08 22:27:37 -0400 |
---|---|---|
committer | Perry Hung <iperry@alum.mit.edu> | 2010-07-08 22:27:37 -0400 |
commit | 3aa755870aa45004edc848475e361db8b639284a (patch) | |
tree | 5edea0724a7a30520e1424c53b676708a1145b86 /support/make | |
parent | e20771d28264125586c6cff7cc4a6b4d51e69110 (diff) | |
download | librambutan-3aa755870aa45004edc848475e361db8b639284a.tar.gz librambutan-3aa755870aa45004edc848475e361db8b639284a.zip |
makefile: fix install target
The makefile 'install' target should upload to whatever the last build
target was, regardless of the environment's value of MAPLE_TARGET.
Diffstat (limited to 'support/make')
-rw-r--r-- | support/make/build-rules.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/support/make/build-rules.mk b/support/make/build-rules.mk index 52ede32..274152c 100644 --- a/support/make/build-rules.mk +++ b/support/make/build-rules.mk @@ -21,10 +21,11 @@ ifndef V SILENT_OBJCOPY = @echo ' [OBJCOPY] ' $(@F); SILENT_DISAS = @echo ' [DISAS] ' $(@:$(BUILD_PATH)/%.bin=%).disas; SILENT_OBJDUMP = @echo ' [OBJDUMP] ' $(OBJDUMP); - DFU := dfu-util - OPENOCD := openocd endif +DFU := dfu-util +OPENOCD := openocd + BUILDDIRS := TGT_BIN := |