mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 15:02:58 +02:00
* build intermediate libraries for each subdirectory * link those libs in main directory instead of single objects * ugly hack in configure.ac to disable dynamic lib for now
23 lines
433 B
Makefile
23 lines
433 B
Makefile
INCLUDES = \
|
|
-I$(top_srcdir)/common \
|
|
-I$(top_srcdir)/libeplayer3/include
|
|
|
|
noinst_LTLIBRARIES = libspark.la
|
|
|
|
AM_CXXFLAGS = -fno-rtti -fno-exceptions -fno-strict-aliasing
|
|
AM_LDFLAGS = -lpthread
|
|
|
|
libspark_la_SOURCES = \
|
|
irmp.c \
|
|
hardware_caps.c \
|
|
lirmp_input.cpp \
|
|
dmx.cpp \
|
|
video.cpp \
|
|
audio.cpp \
|
|
init.cpp \
|
|
playback_libeplayer3.cpp \
|
|
pwrmngr.cpp \
|
|
record.cpp
|
|
|
|
AM_CPPFLAGS = -DF_INTERRUPTS=20000 -DIRMP_EMBED -DLIRC_IRMP
|