blob: 2b7bb261e086bb3d16794d20098bd42c2b3604ee (
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
librcd_la_SOURCES = librcd.c
librcd_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@
|