mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 17:31:11 +02:00
In order to improve portability, libtriple will be split off and
built separately as "libneutrino-hal" (for hardware abstraction layer)
Enable the makefiles to deal with that.
Origin commit data
------------------
Commit: c8a561244e
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-02-03 (Fri, 03 Feb 2012)
22 lines
445 B
Makefile
22 lines
445 B
Makefile
INCLUDES = \
|
|
-I$(top_srcdir)/src/zapit/include \
|
|
-I$(top_srcdir)/src
|
|
|
|
if BOXTYPE_COOL
|
|
INCLUDES += -I$(top_srcdir)/lib/libcoolstream
|
|
endif
|
|
if USE_NEUTRINO_HAL
|
|
INCLUDES += -I$(NEUTRINO_HAL_INC)
|
|
else
|
|
if BOXTYPE_TRIPLE
|
|
INCLUDES += -I$(top_srcdir)/lib/libtriple
|
|
endif
|
|
endif
|
|
|
|
AM_CPPFLAGS = -fno-rtti -fno-exceptions
|
|
|
|
noinst_LIBRARIES = libdvbsub.a
|
|
|
|
libdvbsub_a_SOURCES = dvbsub.cpp dvbsubtitle.cpp \
|
|
tools.cpp PacketQueue.cpp helpers.cpp Debug.cpp
|