From b8736f6166ddb0756923126bb24d5d9fb3e046dd Mon Sep 17 00:00:00 2001 From: "Rob G. Healey" Date: Tue, 7 Feb 2012 18:36:10 +0000 Subject: [PATCH] Added Makefile.am to webstuff/js directory to allow this directory to become part of the Gramps autotools build. svn: r18835 --- src/plugins/webstuff/Makefile.am | 5 +++-- src/plugins/webstuff/js/Makefile.am | 16 ++++++++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 src/plugins/webstuff/js/Makefile.am diff --git a/src/plugins/webstuff/Makefile.am b/src/plugins/webstuff/Makefile.am index 110468368..56e29d90d 100644 --- a/src/plugins/webstuff/Makefile.am +++ b/src/plugins/webstuff/Makefile.am @@ -1,10 +1,11 @@ # This is the src/plugins/webstuff level Makefile for Gramps -# $Id$ # We could use GNU make's ':=' syntax for nice wildcard use, # but that is not necessarily portable. # If not using GNU make, then list all .py files individually -SUBDIRS = css images +# $Id$ + +SUBDIRS = css images js pkgdatadir = $(datadir)/@PACKAGE@/plugins/webstuff diff --git a/src/plugins/webstuff/js/Makefile.am b/src/plugins/webstuff/js/Makefile.am new file mode 100644 index 000000000..d14fe5df7 --- /dev/null +++ b/src/plugins/webstuff/js/Makefile.am @@ -0,0 +1,16 @@ +# This is the src/plugins/webstuff level Makefile for Gramps +# We could use GNU make's ':=' syntax for nice wildcard use, +# but that is not necessarily portable. +# If not using GNU make, then list all .py files individually + +# $Id: Makefile.am 18796 2012-01-30 06:35:05Z robhealey1 $ + +DATAFILES = \ + jquery-1.3.2.min.js \ + jquery-ui-1.7.2.custom.min.js \ + jQuery-1.7.1.js + + +pkgdatadir = $(datadir)/@PACKAGE@/plugins/webstuff/js + +dist_pkgdata_DATA = $(DATAFILES)