blob: 678fc8b625897abf54b49e5c67a4583337f7a906 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
lib_LTLIBRARIES = libwestern.la
libdir = $(pkgdatadir)/engines
if HAVE_RCD
lib_LTLIBRARIES += librcd.la
librussian_la_SOURCES = librcd.c
librussian_la_LDFLAGS = -module -avoid-version -export-symbols-regex "rccGetInfo"
endif
libwestern_la_SOURCES = western.c
libwestern_la_LDFLAGS = -module -avoid-version -export-symbols-regex "rccGetInfo"
AM_CPPFLAGS = -I../src @RCD_INCLUDES@
|