2001-11-12 16:23:41 +00:00
|
|
|
AUTOMAKE_OPTIONS= foreign
|
|
|
|
|
2011-05-10 03:44:44 +00:00
|
|
|
AM_CFLAGS= @PREFER_PIC@
|
2001-07-16 20:41:10 +00:00
|
|
|
INCLUDES= -I$(top_srcdir)/include
|
2010-12-25 09:45:39 +00:00
|
|
|
plugin_ldflags= @plugin_ldflags@ -avoid-version -module -rpath $(plugindir)
|
2002-04-29 19:19:26 +00:00
|
|
|
plugin_libadd= @plugin_libadd@
|
2012-02-07 07:04:19 +00:00
|
|
|
lib_ldflags=-version-info $(QUAKE_LIBRARY_VERSION_INFO) \
|
|
|
|
-rpath $(libdir) -no-undefined
|
2002-08-01 19:49:10 +00:00
|
|
|
EXEEXT=
|
2001-07-16 20:41:10 +00:00
|
|
|
|
2001-09-28 10:31:20 +00:00
|
|
|
lib_LTLIBRARIES= libQFconsole.la
|
2012-02-12 02:37:25 +00:00
|
|
|
plugin_LTLIBRARIES= @console_plugins@
|
|
|
|
noinst_LTLIBRARIES= @client_static_plugins@ @server_static_plugins@
|
2004-11-18 06:08:00 +00:00
|
|
|
EXTRA_LTLIBRARIES= console_server.la console_client.la
|
2001-07-20 18:51:00 +00:00
|
|
|
|
2003-05-07 04:24:20 +00:00
|
|
|
common_sources= \
|
|
|
|
buffer.c complete.c console.c inputline.c list.c filelist.c view.c
|
2007-05-07 13:02:35 +00:00
|
|
|
client_sources= bi_inputline.c client.c menu.c pr_keys.c
|
2001-09-28 10:31:20 +00:00
|
|
|
server_sources= server.c
|
2001-07-16 20:41:10 +00:00
|
|
|
|
2012-02-07 07:04:19 +00:00
|
|
|
console_deps=$(top_builddir)/libs/util/libQFutil.la
|
|
|
|
client_deps= libQFconsole.la \
|
|
|
|
$(top_builddir)/libs/audio/libQFsound.la \
|
|
|
|
$(top_builddir)/libs/ruamoko/libQFruamoko.la \
|
2012-02-09 00:51:50 +00:00
|
|
|
$(top_builddir)/libs/gib/libQFgib.la \
|
2012-02-13 06:05:31 +00:00
|
|
|
$(top_builddir)/libs/ruamoko/libQFruamoko.la \
|
2012-02-07 07:04:19 +00:00
|
|
|
$(console_deps)
|
|
|
|
server_deps= libQFconsole.la $(console_deps)
|
2001-07-16 20:41:10 +00:00
|
|
|
|
2012-02-07 07:04:19 +00:00
|
|
|
libQFconsole_la_LDFLAGS= $(lib_ldflags)
|
|
|
|
libQFconsole_la_LIBADD= $(console_deps) $(plugin_libadd)
|
|
|
|
libQFconsole_la_DEPENDENCIES= $(console_deps)
|
|
|
|
libQFconsole_la_SOURCES= $(common_sources)
|
2001-07-16 20:41:10 +00:00
|
|
|
|
2012-02-07 07:04:19 +00:00
|
|
|
console_client_la_LDFLAGS= $(plugin_ldflags)
|
|
|
|
console_client_la_LIBADD= $(client_deps) $(plugin_libadd)
|
|
|
|
console_client_la_DEPENDENCIES= $(client_deps)
|
|
|
|
console_client_la_SOURCES= $(client_sources)
|
|
|
|
|
|
|
|
console_server_la_LDFLAGS= $(plugin_ldflags)
|
|
|
|
console_server_la_LIBADD= $(server_deps) $(CURSES_LIBS) $(plugin_libadd)
|
|
|
|
console_server_la_DEPENDENCIES= $(server_deps)
|
|
|
|
console_server_la_SOURCES= $(server_sources)
|