X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fdriver%2FMakefile.am;h=b498a6c829fd8ecbee6dc3a5e56e8439f66a909f;hb=66fe4b3122e8be475ed557a6324e709eb1ca520a;hp=4b8fc086b43ceb639029086403b791a83a884fa2;hpb=97b86324d322309843cc5d9d93b039d706c5ae58;p=vuplus_dvbapp diff --git a/lib/driver/Makefile.am b/lib/driver/Makefile.am index 4b8fc08..b498a6c 100644 --- a/lib/driver/Makefile.am +++ b/lib/driver/Makefile.am @@ -1,9 +1,38 @@ AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/include \ - -include Python.h + -include Python.h \ + -include $(top_builddir)/enigma2_config.h -noinst_LTLIBRARIES = libenigma_driver.la +AM_CXXFLAGS = \ + $(LIBSDL_CFLAGS) -libenigma_driver_la_SOURCES = \ - rc.cpp rcinput.cpp rcconsole.cpp avswitch.cpp rfmod.cpp etimezone.cpp misc_options.cpp +noinst_LIBRARIES = libenigma_driver.a + +libenigma_driver_a_SOURCES = \ + avswitch.cpp \ + etimezone.cpp \ + misc_options.cpp \ + rc.cpp \ + rcconsole.cpp \ + rcinput.cpp \ + rfmod.cpp + +driverincludedir = $(pkgincludedir)/lib/driver +driverinclude_HEADERS = \ + avswitch.h \ + etimezone.h \ + input_fake.h \ + misc_options.h \ + rc.h \ + rcconsole.h \ + rcdbox.h \ + rcdreambox2.h \ + rcinput.h \ + rfmod.h + +if HAVE_LIBSDL +libenigma_driver_a_SOURCES += \ + rcsdl.cpp \ + rcsdl.h +endif