diff options
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -50,9 +50,9 @@ target/book/tiles/list: $(TOOLS) $(ALL_DATA) target/book/items/list: $(TOOLS) $(ALL_DATA) @mkdir -p $(dir $@); $(TOOLS) map-items 5star > $@~ && cp $@~ $@ target/book/tiles/done: target/book/tiles/list client/.godot/import-finished - $(CLIENT) --render-tiles ../$< --render-output ../$(dir $@) --render-resolution 256; touch $@ + $(CLIENT) --render-tiles ../$< --render-output ../$(dir $@) --render-resolution 512; touch $@ target/book/items/done: target/book/items/list client/.godot/import-finished - $(CLIENT) --render-items ../$< --render-output ../$(dir $@) --render-resolution 256; touch $@ + $(CLIENT) --render-items ../$< --render-output ../$(dir $@) --render-resolution 512; touch $@ target/book/book.html: target/book/tiles/done target/book/items/done $(BOOK_EXPORT) $(ALL_DATA) $(BOOK_EXPORT) -f html -m 5star > $@~ && cp $@~ $@ |