mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-30 08:50:56 +02:00
Origin commit data
------------------
Branch: master
Commit: a5198e44d2
Author: TangoCash <eric@loxat.de>
Date: 2017-05-31 (Wed, 31 May 2017)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
46 lines
800 B
Makefile
46 lines
800 B
Makefile
noinst_LTLIBRARIES = libgeneric.la
|
|
|
|
AM_CPPFLAGS = -D__STDC_FORMAT_MACROS -D__STDC_CONSTANT_MACROS
|
|
AM_CPPFLAGS += \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/common
|
|
|
|
AM_CXXFLAGS = -fno-rtti -fno-exceptions -fno-strict-aliasing
|
|
|
|
AM_LDFLAGS = \
|
|
-lglut -lGL -lGLU -lGLEW -lao \
|
|
@AVFORMAT_LIBS@ \
|
|
@AVUTIL_LIBS@ \
|
|
@AVCODEC_LIBS@ \
|
|
@SWRESAMPLE_LIBS@ \
|
|
@SWSCALE_LIBS@
|
|
|
|
libgeneric_la_SOURCES = \
|
|
hardware_caps.c \
|
|
dmx.cpp \
|
|
video.cpp \
|
|
audio.cpp \
|
|
glfb.cpp \
|
|
init.cpp \
|
|
pwrmngr.cpp \
|
|
record.cpp
|
|
|
|
if ENABLE_GSTREAMER_01
|
|
libgeneric_la_SOURCES += \
|
|
playback_gst_01.cpp
|
|
AM_LDFLAGS += \
|
|
-lgstreamer-0.10 \
|
|
-lgstinterfaces-0.10
|
|
else
|
|
if ENABLE_GSTREAMER_10
|
|
libgeneric_la_SOURCES += \
|
|
playback_gst_10.cpp
|
|
AM_LDFLAGS += \
|
|
-lgstreamer-1.0
|
|
else
|
|
libgeneric_la_SOURCES += \
|
|
playback.cpp
|
|
endif
|
|
endif
|
|
|