TARGET=Textures.xbt

all: $(TARGET)

.PHONY: force

$(TARGET):
	/usr/src/RPM/BUILD/kodi-17.0/tools/depends/native/TexturePacker/bin/TexturePacker -dupecheck -input . -output $(TARGET)

clean:
	rm -f $(TARGET)

distclean: clean

