hlswmaster/plugins/Makefile.am
Olaf Rempel 5d10585d29 Version 0.50
- added autoconf/automake/libtool support
- plugins: replaced _init() / _fini() with ((constructor)) / ((destructor))
2006-02-02 16:40:20 +01:00

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