diff --git a/gramps2/configure.in b/gramps2/configure.in index 56216bd34..a9b33308a 100644 --- a/gramps2/configure.in +++ b/gramps2/configure.in @@ -243,6 +243,7 @@ src/DataViews/Makefile src/plugins/Makefile src/dates/Makefile src/data/Makefile +src/glade/Makefile src/images/Makefile src/data/templates/Makefile src/po/Makefile diff --git a/gramps2/src/Makefile.am b/gramps2/src/Makefile.am index b06dc1f83..bfe5afe03 100644 --- a/gramps2/src/Makefile.am +++ b/gramps2/src/Makefile.am @@ -14,6 +14,7 @@ SUBDIRS = \ TreeViews \ data \ dates \ + glade \ docgen \ images \ plugins \ @@ -113,16 +114,6 @@ gdir_PYTHON = \ # Could use GNU make's ':=' syntax for nice wildcard use. # If not using GNU make, then list all files individually # The latter is more portable and POSIX-friendly :) -GLADEFILES = \ - gramps.glade\ - edit_person.glade\ - mergedata.glade\ - plugins.glade\ - rule.glade\ - scratchpad.glade - -# Other stuff that we need to install -dist_pkgdata_DATA = $(GLADEFILES) # In principle the following rule slightly violates the automake/autoconf # spirit of keeping each subdirectory as a separate entity unto itself. diff --git a/gramps2/src/glade/Makefile.am b/gramps2/src/glade/Makefile.am new file mode 100644 index 000000000..b9f2c7fc4 --- /dev/null +++ b/gramps2/src/glade/Makefile.am @@ -0,0 +1,13 @@ +# This is the src/data level Makefile +# $Id: Makefile.am 6075 2006-03-04 22:53:46Z dallingham $ +# +pkgdatadir = $(datadir)/@PACKAGE@/glade + +dist_pkgdata_DATA = \ + gramps.glade\ + edit_person.glade\ + mergedata.glade\ + plugins.glade\ + rule.glade\ + scratchpad.glade +