From 3f420066964fe574bcf1c243d6a66646a433f777 Mon Sep 17 00:00:00 2001 From: px4dev Date: Tue, 1 Jan 2013 20:35:43 -0800 Subject: [PATCH] Don't re-run the configuration phase every time we build; NuttX will re-build just about everything if you do. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d9469bb49a..8831f67ff5 100644 --- a/Makefile +++ b/Makefile @@ -75,16 +75,16 @@ $(FIRMWARE_BINARY): configure_$(TARGET) setup_$(TARGET) configure_px4fmu: ifneq ($(TARGET),px4fmu) @make -C $(PX4BASE) distclean -endif @cd $(NUTTX_SRC)/tools && /bin/sh configure.sh px4fmu/nsh @echo px4fmu > $(CONFIGURED) +endif configure_px4io: ifneq ($(TARGET),px4io) @make -C $(PX4BASE) distclean -endif @cd $(NUTTX_SRC)/tools && /bin/sh configure.sh px4io/io @echo px4io > $(CONFIGURED) +endif # # Per-configuration additional targets