]> Pileus Git - grits/blob - src/plugins/Makefile.am
Update example plugin
[grits] / src / plugins / Makefile.am
1 MAINTAINERCLEANFILES = Makefile.in
2
3 AM_CFLAGS   = -Wall --std=gnu99  -I../
4 AM_CPPFLAGS = $(GLIB_CFLAGS) $(GTK_CFLAGS) $(SOUP_CFLAGS)
5 AM_LDFLAGS  = -module -avoid-version -no-undefined
6 LIBS        = $(top_srcdir)/src/libgis.la
7
8 pluginsdir  = "$(libdir)/gis"
9
10 plugins_LTLIBRARIES = bmng.la srtm.la test.la
11 bmng_la_SOURCES     = bmng.c bmng.h
12 srtm_la_SOURCES     = srtm.c srtm.h
13 test_la_SOURCES     = test.c test.h
14
15 noinst_LTLIBRARIES  = teapot.la
16 teapot_la_SOURCES   = \
17         $(top_srcdir)/examples/plugin/teapot.c
18         $(top_srcdir)/examples/plugin/teapot.h
19
20 test:
21         ( cd ../; make test )