[Subtitles] Partial fix for text/border color gap
[xbmc.git] / tools / depends / native / wayland-scanner / Makefile
blobeb3581b9761e1c3d36e0f8ed213919e80dabbea0
1 include ../../Makefile.include
2 PREFIX=$(NATIVEPREFIX)
3 PLATFORM=$(NATIVEPLATFORM)
4 DEPS =../../Makefile.include Makefile ../../download-files.include
6 APPNAME=wayland-scanner
7 PROJECTNAME=wayland
8 VERSION=1.17.0
9 SOURCE=$(PROJECTNAME)-$(VERSION)
10 ARCHIVE=$(SOURCE).tar.xz
11 SHA512=c5051aab5ff078b368c196ecfedb33ccd961265bb914845d7ed81de361bb86ae18299575baa6c4eceb0d82cf8b495e8293f31b51d1cbc05d84af0a199ab3f946
12 include ../../download-files.include
14 # configuration settings
15 CONFIGURE=./configure --prefix=$(PREFIX) --disable-libraries --disable-documentation --disable-dtd-validation
17 APP=$(PLATFORM)/wayland-scanner
19 all: .installed-$(PLATFORM)
22 $(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE).$(HASH_TYPE) $(DEPS)
23 rm -rf $(PLATFORM)/*; mkdir -p $(PLATFORM)
24 cd $(PLATFORM); $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE)
25 cd $(PLATFORM); $(CONFIGURE)
27 $(APP): $(PLATFORM)
28 $(MAKE) -C $(PLATFORM)
30 .installed-$(PLATFORM): $(APP)
31 $(MAKE) -C $(PLATFORM) install
32 touch $@
34 clean:
35 $(MAKE) -C $(PLATFORM) clean
36 rm -f .installed-$(PLATFORM)
38 distclean::
39 rm -rf $(PLATFORM) .installed-$(PLATFORM)