diff options
author | Joakim Plate <elupus@ecce.se> | 2011-10-15 16:29:25 +0200 |
---|---|---|
committer | Joakim Plate <elupus@ecce.se> | 2011-10-15 18:23:03 +0200 |
commit | 67421b6184fc8c1fd86d263d95def4d8e3b596e3 (patch) | |
tree | 03481b04743e69179d748cce70ed1f17b46f4450 /Makefile.in | |
parent | 4a9d832e51c0b9479ac45d2e54411ae25430bf3e (diff) |
changed: drop list of BIN_DIRS (only used for make clean) by generating it from DIRECTORY_ARCHIVES
Diffstat (limited to 'Makefile.in')
-rwxr-xr-x | Makefile.in | 98 |
1 files changed, 2 insertions, 96 deletions
diff --git a/Makefile.in b/Makefile.in index 81cd67d530..53d8579012 100755 --- a/Makefile.in +++ b/Makefile.in @@ -1,100 +1,4 @@ AUTOGENERATED_MAKEFILES=@OUTPUT_FILES@ -BIN_DIRS= \ - xbmc/guilib \ - lib/tinyXML \ - xbmc \ - xbmc/addons \ - xbmc/cdrip \ - xbmc/cores \ - xbmc/cores/DllLoader \ - xbmc/cores/DllLoader/exports \ - xbmc/cores/DllLoader/exports/util \ - xbmc/cores/dvdplayer \ - xbmc/cores/dvdplayer/DVDCodecs \ - xbmc/cores/dvdplayer/DVDCodecs/Audio \ - xbmc/cores/dvdplayer/DVDCodecs/Overlay \ - xbmc/cores/dvdplayer/DVDCodecs/Video \ - xbmc/cores/dvdplayer/DVDDemuxers/ \ - xbmc/cores/dvdplayer/DVDInputStreams/ \ - xbmc/cores/dvdplayer/DVDSubtitles/ \ - xbmc/cores/paplayer \ - xbmc/cores/AudioRenderers \ - xbmc/cores/VideoRenderers \ - xbmc/cores/VideoRenderers/VideoShaders \ - xbmc/cores/ExternalPlayer \ - xbmc/cores/playercorefactory \ - xbmc/filesystem \ - xbmc/filesystem/MusicDatabaseDirectory \ - xbmc/filesystem/VideoDatabaseDirectory \ - xbmc/dialogs \ - xbmc/music \ - xbmc/music/dialogs \ - xbmc/music/infoscanner \ - xbmc/music/karaoke \ - xbmc/music/tags \ - xbmc/music/windows \ - xbmc/pictures \ - xbmc/programs \ - xbmc/video \ - xbmc/video/dialogs \ - xbmc/video/windows \ - xbmc/windows \ - xbmc/network \ - xbmc/network/libscrobbler \ - xbmc/network/linux \ - xbmc/network/osx \ - xbmc/playlists \ - xbmc/powermanagement \ - xbmc/powermanagement/linux \ - xbmc/rendering \ - xbmc/storage \ - xbmc/storage/linux \ - xbmc/storage/osx \ - lib/libhts \ - xbmc/interfaces \ - xbmc/interfaces/http-api \ - xbmc/interfaces/info \ - xbmc/interfaces/json-rpc \ - xbmc/interfaces/python \ - xbmc/interfaces/python/xbmcmodule \ - lib/libRTV \ - lib/libUPnP \ - lib/libXDAAP \ - xbmc/dbwrappers \ - lib/UnrarXLib \ - lib/libsquish \ - lib/SlingboxLib \ - xbmc/visualizations \ - xbmc/screensavers \ - xbmc/utils \ - xbmc/settings \ - xbmc/linux \ - xbmc/input \ - xbmc/input/linux \ - xbmc/osx \ - xbmc/threads \ - xbmc/windowing \ - xbmc/peripherals \ - xbmc/peripherals/bus \ - xbmc/peripherals/devices \ - xbmc/peripherals/dialogs \ - -ifeq (@USE_OPENGL@,1) -BIN_DIRS += xbmc/rendering/gl -endif -ifeq (@USE_OPENGLES@,1) -BIN_DIRS += xbmc/rendering/gles -BIN_DIRS += xbmc/windowing/egl -endif - -ifeq ($(findstring osx,@ARCH@),osx) -BIN_DIRS += xbmc/network/osx -BIN_DIRS += xbmc/storage/osx -BIN_DIRS += xbmc/powermanagement/osx -BIN_DIRS += xbmc/windowing/osx -else -BIN_DIRS += xbmc/windowing/X11 -endif EC_DIRS= \ tools/EventClients @@ -207,6 +111,8 @@ ifeq (@HAVE_XBMC_NONFREE@,1) DIRECTORY_ARCHIVES += lib/UnrarXLib/UnrarXLib.a endif +BIN_DIRS = $(dir $(DIRECTORY_ARCHIVES)) + PAPCODECS_DIRS= \ lib/xbadpcm \ lib/nosefart \ |