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)