Update licensing for Makefile.am files
[claws.git] / src / plugins / demo / Makefile.am
1 # Makefile.am for "src/plugins/demo" directory
2 # This file is part of Claws Mail package.
3 # See COPYING file for license details.
4
5 plugindir = $(pkglibdir)/plugins
6
7 if BUILD_DEMO_PLUGIN
8 plugin_LTLIBRARIES = demo.la
9 endif
10
11 demo_la_SOURCES = \
12         demo.c
13
14 demo_la_LDFLAGS = \
15         -avoid-version -module
16
17 if CYGWIN
18 cygwin_export_lib = -L$(top_builddir)/src -lclaws-mail
19 else
20 cygwin_export_lib = 
21 endif
22
23 demo_la_LIBADD = $(cygwin_export_lib) \
24         $(GTK_LIBS) 
25
26 demo_la_CPPFLAGS = \
27         -I$(top_srcdir)/src \
28         -I$(top_builddir)/src/common \
29         -I$(top_srcdir)/src/common \
30         $(GLIB_CFLAGS)