Olaf Rempel
90d33bffbf
- added receive-queue - changed plugin_helper api from void* to uint offsets - gamespy1 multi-packet response support - q3engine plugin rewrite - added halflife plugin
29 lines
733 B
Makefile
29 lines
733 B
Makefile
AUTOMAKE_OPTIONS = foreign no-dependencies
|
|
|
|
EXTRA_DIST = skel.c
|
|
|
|
INCLUDES = -I../include
|
|
|
|
pkgdata_LTLIBRARIES = doom3.la gamespy1.la gamespy2.la halflife.la hlswproxy.la q3engine.la quake2.la
|
|
|
|
doom3_la_SOURCES = doom3.c
|
|
doom3_la_LDFLAGS = -module -avoid-version
|
|
|
|
gamespy1_la_SOURCES = gamespy1.c
|
|
gamespy1_la_LDFLAGS = -module -avoid-version
|
|
|
|
gamespy2_la_SOURCES = gamespy2.c
|
|
gamespy2_la_LDFLAGS = -module -avoid-version
|
|
|
|
halflife_la_SOURCES = halflife.c
|
|
halflife_la_LDFLAGS = -module -avoid-version
|
|
|
|
hlswproxy_la_SOURCES = hlswproxy.c
|
|
hlswproxy_la_LDFLAGS = -module -avoid-version
|
|
|
|
q3engine_la_SOURCES = q3engine.c
|
|
q3engine_la_LDFLAGS = -module -avoid-version
|
|
|
|
quake2_la_SOURCES = quake2.c
|
|
quake2_la_LDFLAGS = -module -avoid-version
|