mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 16:31:11 +02:00
the code is unmaintained and probably non-functional, everyone should use libstb-hal instead
20 lines
404 B
Makefile
20 lines
404 B
Makefile
INCLUDES = \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/src/zapit/include
|
|
|
|
if BOXTYPE_COOL
|
|
INCLUDES += -I$(top_srcdir)/lib/libcoolstream
|
|
endif
|
|
if USE_STB_HAL
|
|
INCLUDES += -I$(STB_HAL_INC)
|
|
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
|