mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 23:13:16 +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
19 lines
293 B
Makefile
19 lines
293 B
Makefile
INCLUDES = \
|
|
-I$(top_srcdir)/common
|
|
|
|
noinst_LTLIBRARIES = libazbox.la
|
|
|
|
AM_CXXFLAGS = -fno-rtti -fno-exceptions -fno-strict-aliasing
|
|
AM_LDFLAGS = -lpthread
|
|
|
|
libazbox_la_SOURCES = \
|
|
hardware_caps.c \
|
|
dmx.cpp \
|
|
video.cpp \
|
|
audio.cpp \
|
|
init.cpp \
|
|
playback.cpp \
|
|
pwrmngr.cpp \
|
|
record.cpp
|
|
|