mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 07:23:09 +02:00
This allows for starting Lua scripts in neutrino context from the command line. Experimental, not fully regression-tested.
14 lines
305 B
Makefile
14 lines
305 B
Makefile
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/lib \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/lib/luaclient \
|
|
-I$(top_srcdir)/lib/connection
|
|
|
|
AM_CPPFLAGS += -fno-rtti -fno-exceptions
|
|
|
|
bin_PROGRAMS = luaclient
|
|
|
|
luaclient_SOURCES = luaclient.cpp
|
|
luaclient_LDADD = \
|
|
$(top_builddir)/lib/connection/libtuxbox-connection.a
|