aboutsummaryrefslogtreecommitdiff
path: root/light-client/textures/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'light-client/textures/makefile')
-rw-r--r--light-client/textures/makefile18
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 $^