mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 08:27:39 +00:00
c9626b42f0
build the client and server plugins client.c: get to build, though it's very crippled server.c: re-print the message to the buffer after re-sizing the buffer
28 lines
799 B
Makefile
28 lines
799 B
Makefile
SUBDIRS=
|
|
INCLUDES= -I$(top_srcdir)/include
|
|
|
|
pkglibdir = @PLUGINDIR@
|
|
|
|
lib_LTLIBRARIES = libQFconsole.la
|
|
pkglib_LTLIBRARIES = libconsole_client.la libconsole_server.la
|
|
|
|
common_SOURCES = complete.c console.c inputline.c list.c
|
|
client_SOURCES = client.c
|
|
server_SOURCES = server.c
|
|
|
|
libQFconsole_la_LDFLAGS = -version-info 1:0:0
|
|
libQFconsole_la_LIBADD =
|
|
libQFconsole_la_SOURCES = $(common_SOURCES)
|
|
libQFconsole_la_DEPENDENCIES =
|
|
|
|
libconsole_client_la_LDFLAGS = -version-info 1:0:0
|
|
libconsole_client_la_LIBADD =
|
|
libconsole_client_la_SOURCES = $(client_SOURCES)
|
|
libconsole_client_la_DEPENDENCIES =
|
|
|
|
libconsole_server_la_LDFLAGS = -version-info 1:0:0
|
|
libconsole_server_la_LIBADD = $(CURSES_LIBS)
|
|
libconsole_server_la_SOURCES = $(server_SOURCES)
|
|
libconsole_server_la_DEPENDENCIES =
|
|
|
|
LIBLIST = libQFconsole.la
|