mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
27 lines
790 B
Makefile
27 lines
790 B
Makefile
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
|