mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 23:12:44 +02:00
Origin commit data
------------------
Branch: master
Commit: ec3f82441e
Author: martii <m4rtii@gmx.de>
Date: 2013-05-04 (Sat, 04 May 2013)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
52 lines
984 B
Makefile
52 lines
984 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 \
|
|
-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_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
|
|
|
|
libstb_hal_test_LDADD += \
|
|
-lglut -lGL -lGLU -lGLEW -lao \
|
|
-lOpenThreads \
|
|
@AVFORMAT_LIBS@ \
|
|
@AVUTIL_LIBS@ \
|
|
@AVCODEC_LIBS@ \
|
|
@SWSCALE_LIBS@
|
|
endif
|
|
if BOXTYPE_SPARK
|
|
libstb_hal_test_LDADD += -lasound
|
|
SUBDIRS += libspark libeplayer3
|
|
libstb_hal_la_LIBADD += \
|
|
libspark/libspark.la \
|
|
libeplayer3/libeplayer3.la
|
|
endif
|