2001-11-12 16:23:41 +00:00
|
|
|
AUTOMAKE_OPTIONS= foreign
|
|
|
|
|
2001-07-16 20:41:10 +00:00
|
|
|
INCLUDES= -I$(top_srcdir)/include
|
|
|
|
|
2001-09-28 10:31:20 +00:00
|
|
|
lib_LTLIBRARIES= libQFconsole.la
|
2001-12-02 20:11:21 +00:00
|
|
|
plugin_LTLIBRARIES= @SERVER_PLUGIN_TARGETS@ #libconsole_client.la
|
|
|
|
noinst_LTLIBRARIES= @SERVER_PLUGIN_STATIC@
|
|
|
|
EXTRA_LTLIBRARIES= libconsole_server.la
|
2001-07-20 18:51:00 +00:00
|
|
|
|
2001-11-06 07:14:29 +00:00
|
|
|
common_sources= buffer.c complete.c console.c inputline.c list.c filelist.c
|
2001-09-28 10:31:20 +00:00
|
|
|
client_sources= client.c
|
|
|
|
server_sources= server.c
|
2001-07-16 20:41:10 +00:00
|
|
|
|
2001-10-09 21:36:57 +00:00
|
|
|
libQFconsole_la_LDFLAGS= $(plugin_LDFLAGS) -version-info 1:0:0
|
|
|
|
libQFconsole_la_LIBADD= $(plugin_LIBADD)
|
2001-09-28 10:31:20 +00:00
|
|
|
libQFconsole_la_SOURCES= $(common_sources)
|
2001-07-16 20:41:10 +00:00
|
|
|
|
2001-09-29 04:24:04 +00:00
|
|
|
#libconsole_client_la_LDFLAGS= -version-info 1:0:0
|
|
|
|
#libconsole_client_la_SOURCES= $(client_sources)
|
2001-07-16 20:41:10 +00:00
|
|
|
|
2001-12-02 20:11:21 +00:00
|
|
|
libconsole_server_la_LDFLAGS= $(plugin_LDFLAGS) -version-info 1:0:0 $(PLUGIN_RPATH)
|
2001-10-09 21:36:57 +00:00
|
|
|
libconsole_server_la_LIBADD= $(CURSES_LIBS) $(plugin_LIBADD)
|
2001-09-28 10:31:20 +00:00
|
|
|
libconsole_server_la_SOURCES= $(server_sources)
|