X-Git-Url: http://pileus.org/git/?p=grits;a=blobdiff_plain;f=src%2Fplugins%2FMakefile.am;h=0e54a577719a451bb310e1f5dcfcbedb7f979a5e;hp=7d27bc648461271d0b195cb95e5e76f8bb9221d4;hb=d8948985b467a5cfd0447ae413ed1c5d01afb024;hpb=ad940f5d65ed4c95f72cac825244cae53dd6c78d diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am index 7d27bc6..0e54a57 100644 --- a/src/plugins/Makefile.am +++ b/src/plugins/Makefile.am @@ -1,16 +1,23 @@ MAINTAINERCLEANFILES = Makefile.in -AM_CFLAGS = -Wall --std=gnu99 -I../ +AM_CFLAGS = -Wall --std=gnu99 -I$(top_srcdir)/src AM_CPPFLAGS = $(GLIB_CFLAGS) $(GTK_CFLAGS) $(SOUP_CFLAGS) AM_LDFLAGS = -module -avoid-version -no-undefined -LIBS = $(top_srcdir)/src/libgis.la +LIBS = $(top_srcdir)/src/libgrits.la -pluginsdir = "$(libdir)/gis" +pluginsdir = "$(libdir)/$(GRITS_SUBDIR)" -plugins_LTLIBRARIES = bmng.la srtm.la test.la -bmng_la_SOURCES = bmng.c bmng.h -srtm_la_SOURCES = srtm.c srtm.h +plugins_LTLIBRARIES = sat.la elev.la map.la env.la test.la +sat_la_SOURCES = sat.c sat.h +elev_la_SOURCES = elev.c elev.h +map_la_SOURCES = map.c map.h +env_la_SOURCES = env.c env.h test_la_SOURCES = test.c test.h +noinst_LTLIBRARIES = teapot.la +teapot_la_SOURCES = \ + $(top_srcdir)/examples/plugin/teapot.c \ + $(top_srcdir)/examples/plugin/teapot.h + test: ( cd ../; make test )