mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 15:32:59 +02:00
Without this, on some systems the system headers are searched first for the DVB includes before the paths provided via CFLAGS are searched. This sounds like a preprocessor bug, but this "fix" is surely harmless.
20 lines
490 B
Makefile
20 lines
490 B
Makefile
AM_CPPFLAGS = \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir)/lib \
|
|
-I$(top_srcdir)/src/zapit/include \
|
|
-I$(top_srcdir)/lib/connection \
|
|
-I$(top_srcdir)/lib/libeventserver
|
|
|
|
noinst_LIBRARIES = libsectionsdclient.a
|
|
|
|
AM_CPPFLAGS += -fno-rtti -fno-exceptions
|
|
|
|
libsectionsdclient_a_SOURCES = sectionsdclient.cpp
|
|
|
|
bin_PROGRAMS = sectionsdcontrol
|
|
|
|
sectionsdcontrol_SOURCES = sectionsdcontrol.cpp
|
|
sectionsdcontrol_LDADD = \
|
|
libsectionsdclient.a \
|
|
$(top_builddir)/lib/connection/libtuxbox-connection.a
|