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: e5e05ffa09
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2013-06-01 (Sat, 01 Jun 2013)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
36 lines
717 B
Makefile
36 lines
717 B
Makefile
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
lib_LTLIBRARIES = libstb-hal.la
|
|
libstb_hal_la_SOURCES =
|
|
SUBDIRS = common tools
|
|
bin_PROGRAMS = libstb-hal-test
|
|
|
|
libstb_hal_la_LIBADD = \
|
|
common/libcommon.la
|
|
|
|
libstb_hal_test_SOURCES = libtest.cpp
|
|
libstb_hal_test_LDADD = libstb-hal.la
|
|
|
|
# there has to be a better way to do this...
|
|
if BOXTYPE_TRIPLE
|
|
SUBDIRS += libtriple
|
|
libstb_hal_la_LIBADD += \
|
|
libtriple/libtriple.la
|
|
endif
|
|
if BOXTYPE_AZBOX
|
|
SUBDIRS += azbox
|
|
libstb_hal_la_LIBADD += \
|
|
azbox/libazbox.la
|
|
endif
|
|
if BOXTYPE_GENERIC
|
|
SUBDIRS += generic-pc
|
|
libstb_hal_la_LIBADD += \
|
|
generic-pc/libgeneric.la
|
|
endif
|
|
if BOXTYPE_SPARK
|
|
SUBDIRS += libspark libeplayer3
|
|
libstb_hal_la_LIBADD += \
|
|
libspark/libspark.la \
|
|
libeplayer3/libeplayer3.la
|
|
endif
|