make -j works now

This commit is contained in:
Forest Darling
2020-09-21 01:15:55 -05:00
parent a3e1d0b2da
commit 21ffa20e18
2 changed files with 4 additions and 0 deletions

View File

@@ -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)

View File

@@ -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)