diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-10 00:09:10 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-10 00:09:10 +0200 |
| commit | 0919b3ea5f531aa3c376e8ec4094c597e2801c78 (patch) | |
| tree | a9e19a37b4302c6721b31ed48d0f937dfad9910e | |
| parent | 878afdea8f6b5b29b4d23f6a9ba8f5e539f24d0a (diff) | |
| download | hurrycurry-0919b3ea5f531aa3c376e8ec4094c597e2801c78.tar hurrycurry-0919b3ea5f531aa3c376e8ec4094c597e2801c78.tar.bz2 hurrycurry-0919b3ea5f531aa3c376e8ec4094c597e2801c78.tar.zst | |
Forgot make all_data target
| -rw-r--r-- | makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -33,11 +33,12 @@ ALL_SERVER = $(SERVER) $(TOOLS) $(REPLAYTOOL) $(EDITOR) $(DISCOVER) $(LOCALE_EXP ALL_CLIENT = client/.godot/import-finished client/icons/adaptive-background.png client/icons/adaptive-foreground.png ALL_DATA = data/recipes/none.yaml data/recipes/anticurry.yaml data/recipes/default.yaml ALL = $(ALL_BOOK) $(ALL_SERVER) $(ALL_CLIENT) $(ALL_DATA) -.PHONY: all clean all_client all_server all_book all_testclient +.PHONY: all clean all_client all_server all_book all_testclient all_data all: $(ALL) all_client: $(ALL_CLIENT) all_server: $(ALL_SERVER) all_book: $(ALL_BOOK) +all_data: $(ALL_DATA) all_testclient: $(ALL_TESTCLIENT) clean: rm -rf target client/.godot |