mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 15:02:58 +02:00
23 lines
473 B
Makefile
23 lines
473 B
Makefile
noinst_LIBRARIES = libneutrino-hal.a
|
|
libneutrino_hal_a_SOURCES =
|
|
SUBDIRS =
|
|
|
|
# there has to be a better way to do this...
|
|
if BOXTYPE_TRIPLE
|
|
SUBDIRS += libtriple
|
|
libneutrino_hal_a_LIBADD = \
|
|
libtriple/audio_td.o \
|
|
libtriple/ca.o \
|
|
libtriple/dmx_td.o \
|
|
libtriple/init_td.o \
|
|
libtriple/lt_debug.o \
|
|
libtriple/lt_dfbinput.o \
|
|
libtriple/playback_td.o \
|
|
libtriple/pwrmngr.o \
|
|
libtriple/record_td.o \
|
|
libtriple/video_td.o
|
|
endif
|
|
if BOXTYPE_SPARK
|
|
SUBDIRS += libspark
|
|
endif
|