diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-15 19:06:21 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-15 19:06:21 +0200 |
commit | c82a2bf203f3495865fd40527fa41a9e32f7aa9c (patch) | |
tree | ce4c279923999a22e5cc4c5b6602041615931488 /light-client/textures/makefile | |
parent | a4541c50086cde2dda7a72025173e082dd56d8aa (diff) | |
download | hurrycurry-c82a2bf203f3495865fd40527fa41a9e32f7aa9c.tar hurrycurry-c82a2bf203f3495865fd40527fa41a9e32f7aa9c.tar.bz2 hurrycurry-c82a2bf203f3495865fd40527fa41a9e32f7aa9c.tar.zst |
rename textures dir
Diffstat (limited to 'light-client/textures/makefile')
-rw-r--r-- | light-client/textures/makefile | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/light-client/textures/makefile b/light-client/textures/makefile deleted file mode 100644 index ce416a76..00000000 --- a/light-client/textures/makefile +++ /dev/null @@ -1,18 +0,0 @@ - -ALL_TA = $(patsubst %.png,%.ta,$(shell find tiles -name '*.png')) -ALL_PNG = $(patsubst %.ta,%.png,$(shell find tiles -name '*.ta')) - -.PHONY: tex_export tex_import clean -tex_import: $(ALL_TA) -tex_export: $(ALL_PNG) -tex_pack: atlas.ta -clean: - rm -f $(ALL_PNG) - -%.ta: %.png - ../../target/release/tex_import $< $@ -%.png: %.ta - ../../target/release/tex_export $< $@ - -atlas.ta atlas.meta.csv: $(ALL_TA) - ../../target/release/tex_pack $@ atlas.meta.csv $^ |