mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 15:02:43 +02:00
Origin commit data
------------------
Branch: master
Commit: 74c58d82aa
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-02-12 (Sun, 12 Feb 2012)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
47 lines
906 B
Makefile
47 lines
906 B
Makefile
noinst_LIBRARIES = libstb-hal.a
|
|
libstb_hal_a_SOURCES =
|
|
SUBDIRS = common
|
|
bin_PROGRAMS = libstb-hal-test
|
|
|
|
libstb_hal_a_LIBADD = \
|
|
common/lt_debug.o
|
|
|
|
libstb_hal_test_SOURCES = libtest.cpp
|
|
libstb_hal_test_LDADD = \
|
|
libstb-hal.a \
|
|
-lpthread
|
|
|
|
if BOXTYPE_TRIPLE
|
|
libstb_hal_test_LDADD += \
|
|
@DIRECTFB_LIBS@
|
|
endif
|
|
|
|
# there has to be a better way to do this...
|
|
if BOXTYPE_TRIPLE
|
|
SUBDIRS += libtriple
|
|
libstb_hal_a_LIBADD += \
|
|
libtriple/audio_td.o \
|
|
libtriple/ca.o \
|
|
libtriple/dmx_td.o \
|
|
libtriple/init_td.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
|
|
libstb_hal_a_LIBADD += \
|
|
libspark/audio.o \
|
|
libspark/ca.o \
|
|
libspark/dmx.o \
|
|
libspark/init.o \
|
|
libspark/irmp.o \
|
|
libspark/lirmp_input.o \
|
|
libspark/playback.o \
|
|
libspark/pwrmngr.o \
|
|
libspark/record.o \
|
|
libspark/video.o
|
|
endif
|