aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorpx4dev <px4@purgatory.org>2013-05-12 14:04:57 -0700
committerpx4dev <px4@purgatory.org>2013-05-12 14:04:57 -0700
commitedb0e01dfd9c38b826ec038ff7b8387e8ce0bd21 (patch)
tree1926a854cb700892c311000465b27dc91e4abf1f /Makefile
parent0ee738e9c91c49739798ac5ff8dd4a12c06bb82f (diff)
downloadpx4-firmware-edb0e01dfd9c38b826ec038ff7b8387e8ce0bd21.tar.gz
px4-firmware-edb0e01dfd9c38b826ec038ff7b8387e8ce0bd21.tar.bz2
px4-firmware-edb0e01dfd9c38b826ec038ff7b8387e8ce0bd21.zip
HOTFIX: simplify symbol names going into the ROMFS object, hopefully this avoids inconsistent symbol naming on Windows.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 224910e0f..1d1287b7f 100644
--- a/Makefile
+++ b/Makefile
@@ -159,11 +159,11 @@ $(NUTTX_ARCHIVES): $(ARCHIVE_DIR)%.export: $(NUTTX_SRC) $(NUTTX_APPS)
.PHONY: clean
clean:
$(Q) $(RMDIR) $(BUILD_DIR)*.build
- $(Q) $(REMOVE) -f $(IMAGE_DIR)*.px4
+ $(Q) $(REMOVE) $(IMAGE_DIR)*.px4
.PHONY: distclean
distclean: clean
- $(Q) $(REMOVE) -f $(ARCHIVE_DIR)*.export
+ $(Q) $(REMOVE) $(ARCHIVE_DIR)*.export
$(Q) make -C $(NUTTX_SRC) -r $(MQUIET) distclean
#
@@ -196,6 +196,11 @@ help:
@echo " distclean"
@echo " Remove all compilation products, including NuttX RTOS archives."
@echo ""
+ @echo " upload"
+ @echo " When exactly one config is being built, add this target to upload the"
+ @echo " firmware to the board when the build is complete. Not supported for"
+ @echo " all configurations."
+ @echo ""
@echo " Common options:"
@echo " ---------------"
@echo ""