TARGET=Textures.xbt

all: $(TARGET)

.PHONY: force

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

clean:
	rm -f $(TARGET)

distclean: clean

