build: Don't regenerate all the datafiles on each make run

This commit is contained in:
Solomon Peachy 2021-04-20 21:05:42 -04:00
parent 7fec86bac7
commit eef0f22a38
1 changed files with 2 additions and 2 deletions

View File

@ -181,11 +181,11 @@ cppcheck:
$(CPPCHECK) -q -v --std=c99 --enable=all --suppress=variableScope --suppress=selfAssignment --suppress=unusedStructMember -I. -I/usr/include $(CPPFLAGS) $(SOURCES) $(LIB70X_SOURCES) $(LIBS6145_SOURCES)
# Test-related stuff
$(DATAFILES_TMP)/%: hiti_data/% $(DATAFILES_TMP)
$(DATAFILES_TMP)/%: hiti_data/% | $(DATAFILES_TMP)
@$(E) " LN " $@
$(Q)$(LN) -sf ../$< $@
$(DATAFILES_TMP)/%: lib70x/data/% $(DATAFILES_TMP)
$(DATAFILES_TMP)/%: lib70x/data/% | $(DATAFILES_TMP)
@$(E) " LN " $@
$(Q)$(LN) -sf ../$< $@