mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 08:51:10 +02:00
tuxtxt does not need the config file, but it needs the *directory* $(CONFIGDIR)/tuxtxt Since tuxtxt is no longer standalone, moving the config into main neutrino.conf would be better, but for now (and in order to not invalidate all the docs) just create the directory during installation. git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@1862 e54a6e83-5905-42d5-8d5c-058d10e6a962
25 lines
592 B
Makefile
25 lines
592 B
Makefile
INCLUDES = \
|
|
-I$(top_srcdir)/src/zapit/include \
|
|
-I$(top_srcdir)/src \
|
|
$(FREETYPE_CFLAGS)
|
|
|
|
if BOXTYPE_COOL
|
|
INCLUDES += -I$(top_srcdir)/lib/libcoolstream
|
|
endif
|
|
if BOXTYPE_TRIPLE
|
|
INCLUDES += -I$(top_srcdir)/lib/libtriple
|
|
endif
|
|
|
|
AM_CPPFLAGS = -fno-rtti -fno-exceptions
|
|
|
|
noinst_LIBRARIES = libtuxtxt.a
|
|
|
|
libtuxtxt_a_SOURCES = libtuxtxt.cpp tuxtxt.cpp
|
|
|
|
configdir = $(CONFIGDIR)/tuxtxt
|
|
## not necessary - the defaults in the code are exactly like
|
|
## what is in the config file
|
|
#config_DATA = tuxtxt2.conf
|
|
## ... but we need the $(configdir)... hence the empty config_DATA...
|
|
config_DATA =
|