TARGET=Textures.xbt
TARGET_CURIAL=curial.xbt

all: $(TARGET) $(TARGET_CURIAL)

.PHONY: force

$(TARGET):
	/build/kodi-rbp-git/src/xbmc-17.0b5-Krypton/tools/depends/native/TexturePacker/bin/TexturePacker -dupecheck -input . -output $(TARGET)

$(TARGET_CURIAL):
	/build/kodi-rbp-git/src/xbmc-17.0b5-Krypton/tools/depends/native/TexturePacker/bin/TexturePacker -dupecheck -input ../themes/curial -output $(TARGET_CURIAL)

clean:
	rm -f $(TARGET)
	rm -f $(TARGET_CURIAL)

distclean: clean
