First commit
This commit is contained in:
25
media/Makefile.in
Normal file
25
media/Makefile.in
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user