blob: 404cc32106f576ae4dfb30ef5bc89ddc078698d5 (
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 += librussian.la
librussian_la_SOURCES = russian.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@
|