diff options
author | Rainer Hochecker <fernetmenta@online.de> | 2015-02-28 12:18:43 +0100 |
---|---|---|
committer | Rainer Hochecker <fernetmenta@online.de> | 2015-03-02 16:26:58 +0100 |
commit | 8086deecd6366b01d57010fcbe1ed51b35e8a693 (patch) | |
tree | 68b7b14dc72c39ef5d8e704021097c35ab510c8f /Makefile.in | |
parent | 5a7ab40485448efe5cfe6e8a86bfd08cf83f27a5 (diff) |
drop in-tree building of pvr addons
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/Makefile.in b/Makefile.in index 7b3fce69a0..0d3ec9b9b3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -448,16 +448,11 @@ endif imagelib: dllloader $(MAKE) -C lib/cximage-6.0 -pvraddons: exports -ifeq (@USE_PVR_ADDONS@,1) - $(MAKE) -C pvr-addons -endif - codecs: papcodecs dvdpcodecs dvdpextcodecs libs: $(LIBSSE4) libhdhomerun imagelib libexif system/libcpluff-@ARCH@.so $(CMYTH) -externals: codecs libs visualizations screensavers libaddon pvraddons +externals: codecs libs visualizations screensavers libaddon xcode_depends: \ codecs libs visualizations screensavers eventclients skins libaddon \ @@ -573,9 +568,6 @@ endif install-arch: @# Arch dependent files -ifeq (@USE_PVR_ADDONS@,1) - $(MAKE) -C pvr-addons install -endif ifeq ($(findstring freebsd,@ARCH@), freebsd) @find -E system addons -type f -not -iregex ".*\.git.*" \ -iregex ".*@ARCH@.*|.*\.vis|.*\.xbs" \ @@ -592,7 +584,7 @@ ifeq ($(findstring Darwin,$(shell uname -s)),Darwin) -exec install "{}" $(DESTDIR)$(libdir)/xbmc/"{}" \; \ -exec printf " -- %-75.75s\r" "{}" \; else - @find system addons -regextype posix-extended -type f -not -iregex ".*\.git.*" -iregex ".*\.so|.*\.vis|.*\.xbs|.*\.pvr" -exec install -D "{}" $(DESTDIR)$(libdir)/@APP_NAME_LC@/"{}" \; -printf " -- %-75.75f\r" + @find system addons -regextype posix-extended -type f -not -iregex ".*\.git.*" -iregex ".*\.so|.*\.vis|.*\.xbs" -exec install -D "{}" $(DESTDIR)$(libdir)/@APP_NAME_LC@/"{}" \; -printf " -- %-75.75f\r" endif endif @@ -634,7 +626,7 @@ ifeq ($(findstring Darwin,$(shell uname -s)),Darwin) -exec install -m 0644 "{}" $(DESTDIR)$(datarootdir)/xbmc/"{}" \; \ -exec printf " -- %-75.75s\r" "{}" \; else - @find addons language media sounds userdata system -regextype posix-extended -type f -not -iregex ".*@ARCH@.*|.*\.vis|.*\.xbs|.*\.git.*|.*\.so|.*\.dll|.*\.pvr|$(subst ${space},|,$(INSTALL_FILTER))" -exec install -D -m 0644 "{}" $(DESTDIR)$(datarootdir)/@APP_NAME_LC@/"{}" \; -printf " -- %-75.75f\r" + @find addons language media sounds userdata system -regextype posix-extended -type f -not -iregex ".*@ARCH@.*|.*\.vis|.*\.xbs|.*\.git.*|.*\.so|.*\.dll|$(subst ${space},|,$(INSTALL_FILTER))" -exec install -D -m 0644 "{}" $(DESTDIR)$(datarootdir)/@APP_NAME_LC@/"{}" \; -printf " -- %-75.75f\r" endif endif @# Icons and links @@ -700,15 +692,11 @@ clean-visualisations: for d in $(VIS_DIRS); do if test -f $$d/Makefile; then $(MAKE) -C $$d clean; fi; done clean-libaddons: for d in $(LIBADDON_DIRS); do if test -f $$d/Makefile; then $(MAKE) -C $$d clean; fi; done -clean-pvraddons: -ifeq (@USE_PVR_ADDONS@,1) - if test -f pvr-addons/Makefile; then $(MAKE) -C pvr-addons clean; fi; -endif clean-codecs: clean-dvdpcodecs clean-papcodecs clean-externals: clean-codecs clean-eventclients clean-libs \ - clean-screensavers clean-visualisations clean-libaddons clean-pvraddons + clean-screensavers clean-visualisations clean-libaddons ifeq (1,@GTEST_CONFIGURED@) check: testsuite |