Olaf Rempel
5d10585d29
- added autoconf/automake/libtool support - plugins: replaced _init() / _fini() with ((constructor)) / ((destructor))
27 lines
688 B
Makefile
27 lines
688 B
Makefile
AUTOMAKE_OPTIONS = foreign no-dependencies
|
|
|
|
INCLUDES = -I../include
|
|
|
|
pkgdata_LTLIBRARIES = doom3.la gamespy1.la gamespy2.la hlswproxy.la q3engine.la quake2.la ut.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
|
|
|
|
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
|
|
|
|
ut_la_SOURCES = ut.c
|
|
ut_la_LDFLAGS = -module -avoid-version
|