Added Makefile.am to webstuff/js directory to allow this directory to become part of the Gramps autotools build.

svn: r18835
This commit is contained in:
Rob G. Healey 2012-02-07 18:36:10 +00:00
parent 6b8aa17495
commit b8736f6166
2 changed files with 19 additions and 2 deletions

View File

@ -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

View File

@ -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)