quakeforge/libs/console/Makefile.am
Brian Koropoff ccd665e80c This commit removes maplist.c and replaces it with filelist.c, which
contains general functions for creating lists of a type of file and
provides the commands maplist, skinlist, skyboxlist, and demolist.
2001-11-06 07:14:29 +00:00

19 lines
686 B
Makefile

INCLUDES= -I$(top_srcdir)/include
lib_LTLIBRARIES= libQFconsole.la
plugin_LTLIBRARIES= libconsole_server.la #libconsole_client.la
common_sources= buffer.c complete.c console.c inputline.c list.c filelist.c
client_sources= client.c
server_sources= server.c
libQFconsole_la_LDFLAGS= $(plugin_LDFLAGS) -version-info 1:0:0
libQFconsole_la_LIBADD= $(plugin_LIBADD)
libQFconsole_la_SOURCES= $(common_sources)
#libconsole_client_la_LDFLAGS= -version-info 1:0:0
#libconsole_client_la_SOURCES= $(client_sources)
libconsole_server_la_LDFLAGS= $(plugin_LDFLAGS) -version-info 1:0:0
libconsole_server_la_LIBADD= $(CURSES_LIBS) $(plugin_LIBADD)
libconsole_server_la_SOURCES= $(server_sources)