# # 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 = libstat.la libstat_la_SOURCES = stat.c stat.h INCLUDES = \ -I$(GNUMERIC_SRC_DIR) \ -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \ -I$(includedir) \ $(GNOME_INCLUDEDIR)