From 21ffa20e181eae8cc34bc02ffb4cd292d759c677 Mon Sep 17 00:00:00 2001 From: Forest Darling Date: Mon, 21 Sep 2020 01:15:55 -0500 Subject: [PATCH] make -j works now --- Makefile | 2 ++ stm32f303/Makefile | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Makefile b/Makefile index a17e87fd..de24278f 100644 --- a/Makefile +++ b/Makefile @@ -288,6 +288,8 @@ bin: tbl $(TARGET).bin lss: $(TARGET).lss sym: $(TARGET).sym +$(OBJECTS): inc/hal_tbl.h inc/commandslist.h + inc/commandslist.h: tools/create_cmd.py $(SOURCES) @echo Generating commands list @$(PYTHON) tools/create_cmd.py inc/commandslist.h $(SOURCES) diff --git a/stm32f303/Makefile b/stm32f303/Makefile index 5e08945d..0d82b82e 100644 --- a/stm32f303/Makefile +++ b/stm32f303/Makefile @@ -196,6 +196,8 @@ sym: $(TARGET).sym # Display compiler version information # +$(OBJECTS): stm32f303/inc/hal_tbl.h stm32f303/inc/commandslist.h + stm32f303/inc/commandslist.h: tools/create_cmd.py $(SOURCES) @echo Generating commands list @$(PYTHON) tools/create_cmd.py stm32f303/inc/commandslist.h $(SOURCES)