aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorLars Op den Kamp <lars@opdenkamp.eu>2013-06-21 02:27:10 +0200
committerLars Op den Kamp <lars@opdenkamp.eu>2013-07-09 02:31:19 +0200
commit2e5e448c0c9ad3d01ec72596be79519e01f8456e (patch)
treee1e3b964d36096f69a2f7009632d993858b0601e /Makefile.in
parentd8b4503f0be7eae2d8236953aad8e9820a36c86c (diff)
added callback methods for binary add-ons to get codec id information from XBMC, so the dep on avcodec.h can be removed. only IDs used by pvr.hts and pvr.vdr.vnsi have been included
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 5dd2057715..fd36b547e6 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -226,6 +226,7 @@ endif
LIBADDON_DIRS=\
lib/addons/library.xbmc.addon \
+ lib/addons/library.xbmc.codec \
lib/addons/library.xbmc.pvr \
lib/addons/library.xbmc.gui \
@@ -355,6 +356,7 @@ screensavers: $(SS_DIRS)
libaddon: exports
$(MAKE) -C lib/addons/library.xbmc.addon
+ $(MAKE) -C lib/addons/library.xbmc.codec
$(MAKE) -C lib/addons/library.xbmc.gui
$(MAKE) -C lib/addons/library.xbmc.pvr
dvdpcodecs: dllloader
@@ -442,10 +444,11 @@ ifneq (@USE_LIBXBMC@,1)
MAINOBJS+=xbmc/main/main.o
endif
-# sync with tools/depends/target/xbmc-addon-bindings
+# sync these entries manually with tools/depends/target/xbmc-addon-bindings/Makefile
BINDINGS =xbmc/addons/include/xbmc_addon_cpp_dll.h
BINDINGS+=xbmc/addons/include/xbmc_addon_dll.h
BINDINGS+=xbmc/addons/include/xbmc_addon_types.h
+BINDINGS+=xbmc/addons/include/xbmc_codec_types.h
BINDINGS+=xbmc/addons/include/xbmc_epg_types.h
BINDINGS+=xbmc/addons/include/xbmc_pvr_dll.h
BINDINGS+=xbmc/addons/include/xbmc_pvr_types.h
@@ -456,6 +459,7 @@ BINDINGS+=xbmc/addons/include/xbmc_vis_types.h
BINDINGS+=addons/library.xbmc.addon/libXBMC_addon.h
BINDINGS+=addons/library.xbmc.gui/libXBMC_gui.h
BINDINGS+=addons/library.xbmc.pvr/libXBMC_pvr.h
+BINDINGS+=addons/library.xbmc.codec/libXBMC_codec.h
libxbmc.so: $(OBJSXBMC) $(DYNOBJSXBMC) $(NWAOBJSXBMC) $(MAINOBJS)
ifeq ($(findstring osx,@ARCH@), osx)