First commit

This commit is contained in:
2015-06-01 00:13:30 -04:00
commit 4bbf4dc427
211 changed files with 76047 additions and 0 deletions

25
media/Makefile.in Normal file
View File

@@ -0,0 +1,25 @@
TARGET=Textures.xbt
XBMCTEX=@abs_top_srcdir@/tools/TexturePacker/TexturePacker
IMAGES := $(shell find . -name "*jpg")
IMAGES += $(shell find . -name "*png")
IMAGES += $(shell find . -name "*gif")
all: $(TARGET)
.PHONY: force
$(TARGET): $(XBMCTEX) $(IMAGES)
ifeq (@ARCH@,arm)
$(XBMCTEX) -use_none -input . -output $(TARGET)
else
$(XBMCTEX) -input . -output $(TARGET)
endif
$(XBMCTEX): force
$(MAKE) -C @abs_top_srcdir@/tools/TexturePacker
clean:
rm -f $(TARGET)
distclean: clean