skin.tributary/media/Makefile.in

18 lines
289 B
Makefile
Raw Normal View History

2016-02-29 11:33:49 +01:00
TARGET=Textures.xbt
IMAGES := $(shell find . -name "*jpg")
IMAGES += $(shell find . -name "*png")
IMAGES += $(shell find . -name "*gif")
all: $(TARGET)
.PHONY: force
$(TARGET): $(IMAGES)
@TEXTUREPACKER@ -dupecheck -input . -output $(TARGET)
clean:
rm -f $(TARGET)
distclean: clean