Commit caf38233 authored by Christos Gentsos's avatar Christos Gentsos

Makefile: removed references to secondary FW from top-level Makefile

parent e608ffbd
BOOTLOADER_BDIR := ../bootloader/build/
MAIN_FW_BDIR := ../main_fw/build/
TEST_MASTER_BDIR := ../test_master/build/
SECONDARY_FW_BDIR := ../secondary_fw/build/
all: bootloader main_fw test_master secondary_fw
cp $(BOOTLOADER_BDIR)/bootloader.bin .
cp $(MAIN_FW_BDIR)/main_fw.bin .
cp $(TEST_MASTER_BDIR)/test_master.bin .
cp $(SECONDARY_FW_BDIR)/secondary_fw.bin .
bootloader :
$(MAKE) -C $(BOOTLOADER_BDIR)
......@@ -30,18 +28,8 @@ flash_test_master :
sleep 5
cd $(TEST_MASTER_BDIR) && ./flash.sh
secondary_fw :
$(MAKE) -C $(SECONDARY_FW_BDIR)
flash_secondary_fw :
cd $(MAIN_FW_BDIR) && ./keep_reset.sh&
@echo "set the test master devboard in bootloader mode"
sleep 5
cd $(SECONDARY_FW_BDIR) && ./flash.sh
clean:
$(MAKE) -C $(BOOTLOADER_BDIR) clean
$(MAKE) -C $(MAIN_FW_BDIR) clean
$(MAKE) -C $(TEST_MASTER_BDIR) clean
$(MAKE) -C $(SECONDARY_FW_BDIR) clean
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment