# # Sample Makefile for a Gnumeric plugin. # # Where can we find the Gnumeric include files. # GNUMERIC_SRC_DIR = $(top_srcdir)/src # # Where to install the plugin # plugindir = $(libdir)/gnumeric/plugins # CFLAGS += -g -Wall \ # -Wshadow -Wpointer-arith \ # -Wmissing-prototypes -Wmissing-declarations plugin_LTLIBRARIES = libsample.la libsample_la_SOURCES = plugin-sample.c INCLUDES = \ -I$(GNUMERIC_SRC_DIR) \ -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \ -I$(includedir) \ $(GNOME_INCLUDEDIR)