1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
## Process this file with automake to produce Makefile.in
INCLUDES = -I$(top_srcdir)/include \
@GTK_CFLAGS@
libdir = $(PACKAGE_PLUGIN_DIR)
# Use lib_LTLIBRARIES to create a plugin that you actually want installed;
# Here, for the example plugin, we specify the noinst prefix instead of
# lib to stop it from actually being installed.
#
#lib_LTLIBRARIES = libexample.la
noinst_LTLIBRARIES = libexample.la
libexample_la_SOURCES = example.c
libexample_la_LDFLAGS = -avoid-version -module
|