1
2SUBDIRS = xp
3
4if PDB_BUILTIN
5noinst_LTLIBRARIES = pdb.la
6
7else
8
9plugindir = $(ABIWORD_PLUGINSDIR)
10plugin_LTLIBRARIES = pdb.la
11
12endif
13
14pdb_la_LIBADD = \
15	xp/libxp.la \
16	$(PDB_LIBS)
17
18pdb_la_LDFLAGS = \
19	-avoid-version \
20	-module \
21	-no-undefined
22
23pdb_la_SOURCES =
24nodist_EXTRA_pdb_la_SOURCES = dummy.cpp
25
26EXTRA_DIST = \
27	plugin.m4
28
29