mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 16:31:11 +02:00
22 lines
435 B
Makefile
22 lines
435 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_STB_HAL
|
|
INCLUDES += -I$(STB_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
|