TARGET=Textures.xbt

all: $(TARGET)

.PHONY: force

$(TARGET):
	/home/xbian/xbian-package-xbmc/build/rpi2-krypton/working/tools/TexturePacker/TexturePacker -dupecheck -input . -output $(TARGET)

clean:
	rm -f $(TARGET)

distclean: clean

