summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTakaRikka <38417346+TakaRikka@users.noreply.github.com>2023-01-24 00:34:51 -0800
committerGitHub <noreply@github.com>2023-01-24 00:34:51 -0800
commit49a8b2be0dffdf83cfdc87bc94e33b7d2be44c16 (patch)
tree4deb71495b98943db0022d3610ecd3524f3c3d91 /Makefile
parentb3d3d71fcc1cf15d18323ba9f40e57900c1bf548 (diff)
parent98db45807c609899841224aea0c1b69722139094 (diff)
Merge pull request #252 from Jcw87/rels_msys2
makerel.py: Accept arguments from files, allowing rels to build with msys2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0089153949..dbf54f56b5 100644
--- a/Makefile
+++ b/Makefile
@@ -162,7 +162,8 @@ docs:
rels: $(ELF) $(RELS)
@echo generating RELs from .plf
- @$(PYTHON) $(MAKEREL) build --string-table $(BUILD_DIR)/frameworkF.str $(RELS) $(ELF)
+ @echo $(RELS) > build/plf_files
+ $(PYTHON) $(MAKEREL) build --string-table $(BUILD_DIR)/frameworkF.str @build/plf_files $(ELF)
$(ELF): $(LIBS) $(O_FILES)
@echo $(O_FILES) > build/o_files