TARGET=Textures.xbt TARGET_CURIAL=curial.xbt TARGET_FLAT=flat.xbt all: $(TARGET) $(TARGET_CURIAL) $(TARGET_FLAT) .PHONY: force $(TARGET): @TEXTUREPACKER@ -dupecheck -input . -output $(TARGET) $(TARGET_CURIAL): @TEXTUREPACKER@ -dupecheck -input ../themes/curial -output $(TARGET_CURIAL) $(TARGET_FLAT): @TEXTUREPACKER@ -dupecheck -input ../themes/flat -output $(TARGET_FLAT) clean: rm -f $(TARGET) rm -f $(TARGET_CURIAL) rm -f $(TARGET_FLAT) distclean: clean