2001-11-12 16:23:41 +00:00
|
|
|
AUTOMAKE_OPTIONS= foreign
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
CFLAGS+= @PREFER_PIC@
|
2001-07-16 20:41:10 +00:00
|
|
|
INCLUDES= -I$(top_srcdir)/include
|
2002-06-03 16:34:46 +00:00
|
|
|
plugin_version= 1:0:0
|
2004-11-18 06:08:00 +00:00
|
|
|
plugin_ldflags= @plugin_ldflags@ -module
|
2002-04-29 19:19:26 +00:00
|
|
|
plugin_libadd= @plugin_libadd@
|
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
|
2004-11-18 06:08:00 +00:00
|
|
|
plugin_LTLIBRARIES= @SERVER_PLUGIN_TARGETS@ @CLIENT_PLUGIN_TARGETS@
|
|
|
|
noinst_LTLIBRARIES= @SERVER_PLUGIN_STATIC@ @CLIENT_PLUGIN_STATIC@
|
|
|
|
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
|
|
|
|
2004-01-19 07:47:41 +00:00
|
|
|
libQFconsole_la_LDFLAGS= -version-info 1:0:0 -rpath $(libdir) -no-undefined
|
|
|
|
libQFconsole_la_LIBADD= $(plugin_libadd) $(top_builddir)/libs/util/libQFutil.la
|
2001-09-28 10:31:20 +00:00
|
|
|
libQFconsole_la_SOURCES= $(common_sources)
|
2001-07-16 20:41:10 +00:00
|
|
|
|
2002-08-01 19:49:10 +00:00
|
|
|
console_client_la_LDFLAGS= $(plugin_ldflags)
|
2007-05-31 06:31:22 +00:00
|
|
|
console_client_la_LIBADD= $(plugin_libadd) libQFconsole.la $(top_builddir)/libs/audio/libQFsound.la $(top_builddir)/libs/ruamoko/libQFruamoko.la $(top_builddir)/libs/gamecode/builtins/libQFgamecode_builtins.la
|
2002-08-01 19:49:10 +00:00
|
|
|
console_client_la_SOURCES= $(client_sources)
|
2001-07-16 20:41:10 +00:00
|
|
|
|
2002-08-01 19:49:10 +00:00
|
|
|
console_server_la_LDFLAGS= $(plugin_ldflags)
|
2007-05-31 06:31:22 +00:00
|
|
|
console_server_la_LIBADD= $(CURSES_LIBS) $(plugin_libadd) libQFconsole.la
|
2002-08-01 19:49:10 +00:00
|
|
|
console_server_la_SOURCES= $(server_sources)
|