Commit | Line | Data |
---|---|---|
55bb57e0 | 1 | AM_CFLAGS = $(PYTHON_INCLUDE) $(PACKAGE_CFLAGS) -I$(top_srcdir)/include |
33b34c43 PP |
2 | |
3 | noinst_LTLIBRARIES = libplugin.la | |
4 | ||
5 | # Plug-in system library | |
6 | libplugin_la_SOURCES = \ | |
55bb57e0 PP |
7 | plugin.c \ |
8 | plugin-so.c | |
9 | ||
10 | if WITH_PYTHON_PLUGINS | |
11 | libplugin_la_SOURCES += plugin-python.c | |
12 | libplugin_la_LDFLAGS = $(PYTHON_LIBS) | |
13 | endif |