diff options
author | ceros7 <ceros7@svn> | 2010-10-01 06:13:10 +0000 |
---|---|---|
committer | ceros7 <ceros7@svn> | 2010-10-01 06:13:10 +0000 |
commit | 103df86c2700ec3dc757052a99dbe999d13a5993 (patch) | |
tree | de94459dad838e8ab96dd4b804f9815fbecc9255 /Makefile.in | |
parent | ea064f7e8dc539240c78809cb3d1379d28a9da6a (diff) |
Replace python implementation of setAlsaVolumes with C implementation.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34350 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index cd7e90d7f1..3f49613457 100644 --- a/Makefile.in +++ b/Makefile.in @@ -125,8 +125,11 @@ CONFLUENCE_MEDIA=addons/skin.confluence/media SKIN_DIRS=\ $(CONFLUENCE_MEDIA) +LIVE_DIRS=\ + tools/XBMCLive + DIRS= $(BIN_DIRS) $(EC_DIRS) $(XBMCTEX_DIRS) $(DVDPCODECS_DIRS) $(PAPCODECS_DIRS) \ - $(LIB_DIRS) $(SS_DIRS) $(VIS_DIRS) $(SKIN_DIRS) + $(LIB_DIRS) $(SS_DIRS) $(VIS_DIRS) $(SKIN_DIRS) $(LIVE_DIRS) LIBS=@LIBS@ CFLAGS=@CFLAGS@ @@ -501,6 +504,9 @@ endif tools/TexturePacker/TexturePacker: guilib/guilib.a xbmc/lib/libsquish/libsquish-@ARCH@.a $(MAKE) -C tools/TexturePacker/ +livedatas: + $(MAKE) -C tools/XBMCLive + install-bin: xbmc.bin # developement convenience target sudo install -D xbmc.bin $(DESTDIR)$(libdir)/xbmc @@ -543,7 +549,7 @@ install-datas: install-scripts @install -D -m 0644 media/icon.png $(DESTDIR)$(datadir)/icons/hicolor/256x256/apps/xbmc.png @test -z "$(DESTDIR)" && gtk-update-icon-cache -f -q -t $(datadir)/icons/hicolor || : -install-livedatas: +install-livedatas: livedatas @echo "Install Live CD datas in $(DESTDIR)$(prefix) ..." @mkdir -p $(DESTDIR)$(bindir) @install -D tools/XBMCLive/diskmounter $(DESTDIR)$(bindir)/diskmounter |