diff options
author | Lars Op den Kamp <lars@opdenkamp.eu> | 2011-10-11 00:39:21 +0200 |
---|---|---|
committer | Lars Op den Kamp <lars@opdenkamp.eu> | 2011-10-11 00:59:58 +0200 |
commit | 4f2c2b68ba04c6cc041d13f47583940759e97693 (patch) | |
tree | 0f7271cc439be2c75b52691add41589edb1b0f37 /Makefile.in | |
parent | c4927115ea390991ec91997b1a10f5cc2b240b8c (diff) |
cec: use libcec as an internal lib and fetch it in "bootstrap". added --enable-external-libcec option to configure.
to keep a permanent copy, remove "make download" from bootstrap
to change the location of the tarball to another mirror, change lib/libcec/Makefile.in
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index bff37e6b37..28314b95de 100644 --- a/Makefile.in +++ b/Makefile.in @@ -364,6 +364,8 @@ lib/libapetag/.libs/libapetag.a: force $(MAKE) -C lib/libapetag lib/cpluff/libcpluff/.libs/libcpluff.a: force $(MAKE) -C lib/cpluff/libcpluff +lib/libcec/libcec.a: force + $(MAKE) -C lib/libcec libcec.a system/libcpluff-@ARCH@.so: lib/cpluff/libcpluff/.libs/libcpluff.a ifeq ($(findstring osx,@ARCH@), osx) ifeq (@ARCH@, arm-osx) @@ -541,6 +543,10 @@ DYNOBJSXBMC= \ LIBS += @PYTHON_LDFLAGS@ +ifneq (@USE_EXTERNAL_LIBCEC@,1) + DYNOBJSXBMC += lib/libcec/libcec.a +endif + xbmc.bin: $(OBJSXBMC) $(DYNOBJSXBMC) ifeq ($(findstring osx,@ARCH@), osx) $(CXX) $(LDFLAGS) -o xbmc.bin -Wl,-all_load,-ObjC $(DYNOBJSXBMC) $(OBJSXBMC) $(LIBS) -rdynamic |