Removed wildcards from Makefiles for better POSIX-compliant portability
svn: r1321
This commit is contained in:
parent
a89f43b5a8
commit
b8b53c88c8
@ -1,4 +1,5 @@
|
||||
Makefile
|
||||
Makefile.in
|
||||
*.pyc
|
||||
*.pyo
|
||||
gramps.strings
|
||||
|
@ -12,12 +12,104 @@ MOSTLYCLEANFILES =
|
||||
# We only want optimized byte-compiled (.pyo) versions, no .pyc
|
||||
# In principle, this is handled by PYCFILES and PYOFILES, but
|
||||
# they don't seem to work so we edited the py-compile script instead
|
||||
pkgpython_PYTHON = ${wildcard *.py}
|
||||
pkgpython_PYTHON = AddMedia.py \
|
||||
AddrEdit.py \
|
||||
AddSpouse.py \
|
||||
AttrEdit.py \
|
||||
AutoComp.py \
|
||||
Bookmarks.py \
|
||||
Calendar.py \
|
||||
ChooseParents.py \
|
||||
const.py \
|
||||
DateEdit.py \
|
||||
Date.py \
|
||||
DbPrompter.py \
|
||||
DisplayTrace.py \
|
||||
DrawDoc.py \
|
||||
EditPerson.py \
|
||||
EditPlace.py \
|
||||
EditSource.py \
|
||||
EventEdit.py \
|
||||
Filter.py \
|
||||
Find.py \
|
||||
FontScale.py \
|
||||
GedcomInfo.py \
|
||||
GenericFilter.py \
|
||||
GrampsCfg.py \
|
||||
gramps_main.py \
|
||||
GrampsParser.py \
|
||||
gramps.py \
|
||||
GrampsXML.py \
|
||||
GrampsZODB.py \
|
||||
GraphLayout.py \
|
||||
ImageSelect.py \
|
||||
ImgManip.py \
|
||||
intl.py \
|
||||
latin_ansel.py \
|
||||
latin_utf8.py \
|
||||
LocEdit.py \
|
||||
Marriage.py \
|
||||
MediaView.py \
|
||||
MergeData.py \
|
||||
NameEdit.py \
|
||||
NoteEdit.py \
|
||||
PaperMenu.py \
|
||||
PedView.py \
|
||||
PlaceView.py \
|
||||
Plugins.py \
|
||||
QuestionDialog.py \
|
||||
QuickAdd.py \
|
||||
ReadXML.py \
|
||||
RelImage.py \
|
||||
RelLib.py \
|
||||
Report.py \
|
||||
SelectChild.py \
|
||||
Sorter.py \
|
||||
sort.py \
|
||||
soundex.py \
|
||||
Sources.py \
|
||||
SourceView.py \
|
||||
SpreadSheetDoc.py \
|
||||
StartupDialog.py \
|
||||
StyleEditor.py \
|
||||
SubstKeywords.py \
|
||||
TarFile.py \
|
||||
TextDoc.py \
|
||||
UrlEdit.py \
|
||||
Utils.py \
|
||||
VersionControl.py \
|
||||
WriteXML.py
|
||||
|
||||
# Use GNU make's ':=' syntax for nice wildcard use.
|
||||
# If not using GNU make, then list all files individually
|
||||
GLADEFILES := ${wildcard *.glade}
|
||||
GRAPHICS := ${wildcard *.xpm} ${wildcard *.png} ${wildcard *.jpg}
|
||||
|
||||
# Could use GNU make's ':=' syntax for nice wildcard use but since
|
||||
# GNU make is not POSIX-compliant, we list all files individually
|
||||
GLADEFILES = config.glade \
|
||||
dialog.glade \
|
||||
EditPerson.glade \
|
||||
gramps.glade \
|
||||
imagesel.glade \
|
||||
marriage.glade \
|
||||
mergedata.glade \
|
||||
places.glade \
|
||||
plugins.glade \
|
||||
preferences.glade \
|
||||
revision.glade \
|
||||
rule.glade \
|
||||
srcsel.glade \
|
||||
styles.glade
|
||||
XPMFILES = earth.xpm \
|
||||
fam.xpm \
|
||||
gramps.xpm \
|
||||
pedegree.xpm \
|
||||
people.xpm
|
||||
|
||||
|
||||
PNGFILES = gramps.png \
|
||||
logo.png
|
||||
|
||||
JPGFILES = splash.jpg
|
||||
|
||||
GRAPHICS = ${XPMFILES} ${PNGFILES} ${JPGFILES}
|
||||
|
||||
# Other stuff that we need to install
|
||||
pkgdata_DATA = ${INTLLIBS} ${GLADEFILES} ${GRAPHICS} gramps.desktop
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Makefile.in generated by automake 1.6.2 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.6.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
|
||||
@ -49,7 +49,6 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = @program_transform_name@
|
||||
@ -123,12 +122,106 @@ MOSTLYCLEANFILES =
|
||||
# We only want optimized byte-compiled (.pyo) versions, no .pyc
|
||||
# In principle, this is handled by PYCFILES and PYOFILES, but
|
||||
# they don't seem to work so we edited the py-compile script instead
|
||||
pkgpython_PYTHON = ${wildcard *.py}
|
||||
pkgpython_PYTHON = AddMedia.py \
|
||||
AddrEdit.py \
|
||||
AddSpouse.py \
|
||||
AttrEdit.py \
|
||||
AutoComp.py \
|
||||
Bookmarks.py \
|
||||
Calendar.py \
|
||||
ChooseParents.py \
|
||||
const.py \
|
||||
DateEdit.py \
|
||||
Date.py \
|
||||
DbPrompter.py \
|
||||
DisplayTrace.py \
|
||||
DrawDoc.py \
|
||||
EditPerson.py \
|
||||
EditPlace.py \
|
||||
EditSource.py \
|
||||
EventEdit.py \
|
||||
Filter.py \
|
||||
Find.py \
|
||||
FontScale.py \
|
||||
GedcomInfo.py \
|
||||
GenericFilter.py \
|
||||
GrampsCfg.py \
|
||||
gramps_main.py \
|
||||
GrampsParser.py \
|
||||
gramps.py \
|
||||
GrampsXML.py \
|
||||
GrampsZODB.py \
|
||||
GraphLayout.py \
|
||||
ImageSelect.py \
|
||||
ImgManip.py \
|
||||
intl.py \
|
||||
latin_ansel.py \
|
||||
latin_utf8.py \
|
||||
LocEdit.py \
|
||||
Marriage.py \
|
||||
MediaView.py \
|
||||
MergeData.py \
|
||||
NameEdit.py \
|
||||
NoteEdit.py \
|
||||
PaperMenu.py \
|
||||
PedView.py \
|
||||
PlaceView.py \
|
||||
Plugins.py \
|
||||
QuestionDialog.py \
|
||||
QuickAdd.py \
|
||||
ReadXML.py \
|
||||
RelImage.py \
|
||||
RelLib.py \
|
||||
Report.py \
|
||||
SelectChild.py \
|
||||
Sorter.py \
|
||||
sort.py \
|
||||
soundex.py \
|
||||
Sources.py \
|
||||
SourceView.py \
|
||||
SpreadSheetDoc.py \
|
||||
StartupDialog.py \
|
||||
StyleEditor.py \
|
||||
SubstKeywords.py \
|
||||
TarFile.py \
|
||||
TextDoc.py \
|
||||
UrlEdit.py \
|
||||
Utils.py \
|
||||
VersionControl.py \
|
||||
WriteXML.py
|
||||
|
||||
# Use GNU make's ':=' syntax for nice wildcard use.
|
||||
# If not using GNU make, then list all files individually
|
||||
GLADEFILES := ${wildcard *.glade}
|
||||
GRAPHICS := ${wildcard *.xpm} ${wildcard *.png} ${wildcard *.jpg}
|
||||
|
||||
# Could use GNU make's ':=' syntax for nice wildcard use but since
|
||||
# GNU make is not POSIX-compliant, we list all files individually
|
||||
GLADEFILES = config.glade \
|
||||
dialog.glade \
|
||||
EditPerson.glade \
|
||||
gramps.glade \
|
||||
imagesel.glade \
|
||||
marriage.glade \
|
||||
mergedata.glade \
|
||||
places.glade \
|
||||
plugins.glade \
|
||||
preferences.glade \
|
||||
revision.glade \
|
||||
rule.glade \
|
||||
srcsel.glade \
|
||||
styles.glade
|
||||
|
||||
XPMFILES = earth.xpm \
|
||||
fam.xpm \
|
||||
gramps.xpm \
|
||||
pedegree.xpm \
|
||||
people.xpm
|
||||
|
||||
|
||||
PNGFILES = gramps.png \
|
||||
logo.png
|
||||
|
||||
|
||||
JPGFILES = splash.jpg
|
||||
|
||||
GRAPHICS = ${XPMFILES} ${PNGFILES} ${JPGFILES}
|
||||
|
||||
# Other stuff that we need to install
|
||||
pkgdata_DATA = ${INTLLIBS} ${GLADEFILES} ${GRAPHICS} gramps.desktop
|
||||
@ -320,7 +413,7 @@ top_distdir = ..
|
||||
distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@list='$(DISTFILES)'; for file in $$list; do \
|
||||
@for file in $(DISTFILES); do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
@ -381,7 +474,7 @@ clean-generic:
|
||||
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
||||
|
||||
distclean-generic:
|
||||
-rm -f Makefile $(CONFIG_CLEAN_FILES)
|
||||
-rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]*
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
|
@ -1 +1,2 @@
|
||||
Makefile
|
||||
Makefile.in
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Makefile.in generated by automake 1.6.2 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.6.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
|
||||
@ -48,7 +48,6 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = @program_transform_name@
|
||||
@ -257,7 +256,7 @@ top_distdir = ../..
|
||||
distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@list='$(DISTFILES)'; for file in $$list; do \
|
||||
@for file in $(DISTFILES); do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
@ -316,7 +315,7 @@ mostlyclean-generic:
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-rm -f Makefile $(CONFIG_CLEAN_FILES)
|
||||
-rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]*
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
|
@ -1,5 +1,9 @@
|
||||
# This is the src/data/templates level Makefile
|
||||
pkgdata_DATA := ${wildcard *.tpkg} templates.xml
|
||||
pkgdata_DATA = blue_edge.tpkg \
|
||||
marble.tpkg \
|
||||
pink_marble.tpkg \
|
||||
sepia.tpkg \
|
||||
sky_border.tpkg
|
||||
|
||||
pkgdatadir = ${datadir}/@PACKAGE@/data/templates
|
||||
EXTRA_DIST = ${pkgdata_DATA}
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Makefile.in generated by automake 1.6.2 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.6.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
|
||||
@ -48,7 +48,6 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = @program_transform_name@
|
||||
@ -111,7 +110,12 @@ pyexecdir = @pyexecdir@
|
||||
pythondir = @pythondir@
|
||||
|
||||
# This is the src/data/templates level Makefile
|
||||
pkgdata_DATA := ${wildcard *.tpkg} templates.xml
|
||||
pkgdata_DATA = blue_edge.tpkg \
|
||||
marble.tpkg \
|
||||
pink_marble.tpkg \
|
||||
sepia.tpkg \
|
||||
sky_border.tpkg
|
||||
|
||||
EXTRA_DIST = ${pkgdata_DATA}
|
||||
subdir = src/data/templates
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
@ -156,7 +160,7 @@ top_distdir = ../../..
|
||||
distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@list='$(DISTFILES)'; for file in $$list; do \
|
||||
@for file in $(DISTFILES); do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
@ -202,7 +206,7 @@ mostlyclean-generic:
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-rm -f Makefile $(CONFIG_CLEAN_FILES)
|
||||
-rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]*
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
|
@ -1,3 +1,4 @@
|
||||
Makefile
|
||||
Makefile.in
|
||||
*.pyc
|
||||
*.pyo
|
||||
|
@ -1,6 +1,20 @@
|
||||
# This is the src/docgen level Makefile for Gramps
|
||||
# Use GNU make's ':=' syntax for nice wildcard use.
|
||||
# If not using GNU make, then list all .py files individually
|
||||
pkgpython_PYTHON := ${wildcard *.py}
|
||||
pkgpython_PYTHON = AbiWordDoc.py \
|
||||
HtmlDoc.py \
|
||||
KwordDoc.py \
|
||||
LaTeXDocGary.py \
|
||||
LaTeXDoc.py \
|
||||
NroffDoc.py \
|
||||
OpenDrawDoc.py \
|
||||
OpenOfficeDoc.py \
|
||||
OpenSpreadSheet.py \
|
||||
PdfDoc.py \
|
||||
PdfDrawDoc.py \
|
||||
PSDrawDoc.py \
|
||||
RTFDoc.py \
|
||||
SvgDrawDoc.py
|
||||
|
||||
pkgpyexecdir = @pkgpyexecdir@/docgen
|
||||
pkgpythondir = @pkgpythondir@/docgen
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Makefile.in generated by automake 1.6.2 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.6.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
|
||||
@ -49,7 +49,6 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = @program_transform_name@
|
||||
@ -104,6 +103,7 @@ ZIP = @ZIP@
|
||||
am__include = @am__include@
|
||||
am__quote = @am__quote@
|
||||
install_sh = @install_sh@
|
||||
|
||||
pkgpyexecdir = @pkgpyexecdir@/docgen
|
||||
pkgpythondir = @pkgpythondir@/docgen
|
||||
pyexecdir = @pyexecdir@
|
||||
@ -112,7 +112,21 @@ pythondir = @pythondir@
|
||||
# This is the src/docgen level Makefile for Gramps
|
||||
# Use GNU make's ':=' syntax for nice wildcard use.
|
||||
# If not using GNU make, then list all .py files individually
|
||||
pkgpython_PYTHON := ${wildcard *.py}
|
||||
pkgpython_PYTHON = AbiWordDoc.py \
|
||||
HtmlDoc.py \
|
||||
KwordDoc.py \
|
||||
LaTeXDocGary.py \
|
||||
LaTeXDoc.py \
|
||||
NroffDoc.py \
|
||||
OpenDrawDoc.py \
|
||||
OpenOfficeDoc.py \
|
||||
OpenSpreadSheet.py \
|
||||
PdfDoc.py \
|
||||
PdfDrawDoc.py \
|
||||
PSDrawDoc.py \
|
||||
RTFDoc.py \
|
||||
SvgDrawDoc.py
|
||||
|
||||
subdir = src/docgen
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_CLEAN_FILES =
|
||||
@ -159,7 +173,7 @@ top_distdir = ../..
|
||||
distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@list='$(DISTFILES)'; for file in $$list; do \
|
||||
@for file in $(DISTFILES); do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
@ -205,7 +219,7 @@ mostlyclean-generic:
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-rm -f Makefile $(CONFIG_CLEAN_FILES)
|
||||
-rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]*
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
|
@ -1,3 +1,4 @@
|
||||
Makefile
|
||||
Makefile.in
|
||||
*.pyc
|
||||
*.pyo
|
||||
|
@ -1,6 +1,24 @@
|
||||
# This is the src/filters level Makefile for Gramps
|
||||
# Use GNU make's ':=' syntax for nice wildcard use.
|
||||
# If not using GNU make, then list all .py files individually
|
||||
pkgpython_PYTHON := ${wildcard *.py}
|
||||
pkgpython_PYTHON = After.py \
|
||||
AltFam.py \
|
||||
Before.py \
|
||||
Disconnected.py \
|
||||
EventPlace.py \
|
||||
EventType.py \
|
||||
Females.py \
|
||||
HavePhotos.py \
|
||||
IncompleteNames.py \
|
||||
Males.py \
|
||||
MatchSndEx2.py \
|
||||
MatchSndEx.py \
|
||||
MutlipleMarriages.py \
|
||||
NeverMarried.py \
|
||||
NoBirthdate.py \
|
||||
NoChildren.py \
|
||||
RegExMatch.py \
|
||||
SubString.py
|
||||
|
||||
pkgpyexecdir = @pkgpyexecdir@/filters
|
||||
pkgpythondir = @pkgpythondir@/filters
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Makefile.in generated by automake 1.6.2 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.6.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
|
||||
@ -49,7 +49,6 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = @program_transform_name@
|
||||
@ -104,6 +103,7 @@ ZIP = @ZIP@
|
||||
am__include = @am__include@
|
||||
am__quote = @am__quote@
|
||||
install_sh = @install_sh@
|
||||
|
||||
pkgpyexecdir = @pkgpyexecdir@/filters
|
||||
pkgpythondir = @pkgpythondir@/filters
|
||||
pyexecdir = @pyexecdir@
|
||||
@ -112,7 +112,25 @@ pythondir = @pythondir@
|
||||
# This is the src/filters level Makefile for Gramps
|
||||
# Use GNU make's ':=' syntax for nice wildcard use.
|
||||
# If not using GNU make, then list all .py files individually
|
||||
pkgpython_PYTHON := ${wildcard *.py}
|
||||
pkgpython_PYTHON = After.py \
|
||||
AltFam.py \
|
||||
Before.py \
|
||||
Disconnected.py \
|
||||
EventPlace.py \
|
||||
EventType.py \
|
||||
Females.py \
|
||||
HavePhotos.py \
|
||||
IncompleteNames.py \
|
||||
Males.py \
|
||||
MatchSndEx2.py \
|
||||
MatchSndEx.py \
|
||||
MutlipleMarriages.py \
|
||||
NeverMarried.py \
|
||||
NoBirthdate.py \
|
||||
NoChildren.py \
|
||||
RegExMatch.py \
|
||||
SubString.py
|
||||
|
||||
subdir = src/filters
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_CLEAN_FILES =
|
||||
@ -159,7 +177,7 @@ top_distdir = ../..
|
||||
distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@list='$(DISTFILES)'; for file in $$list; do \
|
||||
@for file in $(DISTFILES); do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
@ -205,7 +223,7 @@ mostlyclean-generic:
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-rm -f Makefile $(CONFIG_CLEAN_FILES)
|
||||
-rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]*
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
|
@ -433,16 +433,20 @@ class Gramps:
|
||||
url = gnome.help.file_find_file("gramps-manual","gramps-manual.sgml")
|
||||
if url:
|
||||
url = "gnome-help:"+url
|
||||
gnome.help.goto(url)
|
||||
print "I found the manual at:"
|
||||
print url
|
||||
gnome.help.display(url,"gramps-manual")
|
||||
|
||||
def on_writing_extensions_activate(self,obj):
|
||||
"""Display the Extending GRAMPS manual"""
|
||||
import gnome.help
|
||||
url = gnome.help.file_find_file("extending-gramps","extending-gramps.sgml")
|
||||
print "I found the extension guide at:"
|
||||
print url
|
||||
if url:
|
||||
gnome.help.display(url,"extending-gramps")
|
||||
url = "gnome-help:"+url
|
||||
gnome.help.goto(url)
|
||||
|
||||
|
||||
def on_remove_child_clicked(self,obj):
|
||||
if not self.active_family or not self.active_child or not self.active_person:
|
||||
return
|
||||
|
@ -1,3 +1,4 @@
|
||||
Makefile
|
||||
Makefile.in
|
||||
*.pyc
|
||||
*.pyo
|
||||
|
@ -1,11 +1,55 @@
|
||||
# This is the src/plugins level Makefile for Gramps
|
||||
# Use GNU make's ':=' syntax for nice wildcard use.
|
||||
# If not using GNU make, then list all .py files individually
|
||||
pkgpython_PYTHON := ${wildcard *.py}
|
||||
pkgpython_PYTHON = AncestorChart.py \
|
||||
AncestorReport.py \
|
||||
Capitalize.py \
|
||||
ChangeTypes.py \
|
||||
Check.py \
|
||||
count_anc.py \
|
||||
Desbrowser.py \
|
||||
DescendReport.py \
|
||||
DesGraph.py \
|
||||
DetAncestralReport.py \
|
||||
DetDescendantReport.py \
|
||||
EventCmp.py \
|
||||
FamilyGroup.py \
|
||||
FilterEditor.py \
|
||||
Graph.py \
|
||||
GraphViz.py \
|
||||
IndivComplete.py \
|
||||
IndivSummary.py \
|
||||
Merge.py \
|
||||
PatchNames.py \
|
||||
ReadGedcom.py \
|
||||
ReadNative.py \
|
||||
RelCalc.py \
|
||||
ReorderIds.py \
|
||||
soundgen.py \
|
||||
Summary.py \
|
||||
Verify.py \
|
||||
WebPage.py \
|
||||
WriteGedcom.py \
|
||||
WritePafPalm.py \
|
||||
WritePkg.py
|
||||
|
||||
pkgpyexecdir = @pkgpyexecdir@/plugins
|
||||
pkgpythondir = @pkgpythondir@/plugins
|
||||
|
||||
GLADEFILES := ${wildcard *.glade}
|
||||
GLADEFILES = desbrowse.glade \
|
||||
eventcmp.glade \
|
||||
gedcomexport.glade \
|
||||
gedcomimport.glade \
|
||||
merge.glade \
|
||||
pafexport.glade \
|
||||
patchnames.glade \
|
||||
pkgexport.glade \
|
||||
readgedcom.glade \
|
||||
relcalc.glade \
|
||||
soundex.glade \
|
||||
summary.glade \
|
||||
verify.glade
|
||||
|
||||
|
||||
pkgdatadir = ${datadir}/@PACKAGE@/plugins
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Makefile.in generated by automake 1.6.2 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.6.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
|
||||
@ -48,7 +48,6 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = @program_transform_name@
|
||||
@ -105,6 +104,7 @@ ZIP = @ZIP@
|
||||
am__include = @am__include@
|
||||
am__quote = @am__quote@
|
||||
install_sh = @install_sh@
|
||||
|
||||
pkgpyexecdir = @pkgpyexecdir@/plugins
|
||||
pkgpythondir = @pkgpythondir@/plugins
|
||||
pyexecdir = @pyexecdir@
|
||||
@ -113,9 +113,53 @@ pythondir = @pythondir@
|
||||
# This is the src/plugins level Makefile for Gramps
|
||||
# Use GNU make's ':=' syntax for nice wildcard use.
|
||||
# If not using GNU make, then list all .py files individually
|
||||
pkgpython_PYTHON := ${wildcard *.py}
|
||||
pkgpython_PYTHON = AncestorChart.py \
|
||||
AncestorReport.py \
|
||||
Capitalize.py \
|
||||
ChangeTypes.py \
|
||||
Check.py \
|
||||
count_anc.py \
|
||||
Desbrowser.py \
|
||||
DescendReport.py \
|
||||
DesGraph.py \
|
||||
DetAncestralReport.py \
|
||||
DetDescendantReport.py \
|
||||
EventCmp.py \
|
||||
FamilyGroup.py \
|
||||
FilterEditor.py \
|
||||
Graph.py \
|
||||
GraphViz.py \
|
||||
IndivComplete.py \
|
||||
IndivSummary.py \
|
||||
Merge.py \
|
||||
PatchNames.py \
|
||||
ReadGedcom.py \
|
||||
ReadNative.py \
|
||||
RelCalc.py \
|
||||
ReorderIds.py \
|
||||
soundgen.py \
|
||||
Summary.py \
|
||||
Verify.py \
|
||||
WebPage.py \
|
||||
WriteGedcom.py \
|
||||
WritePafPalm.py \
|
||||
WritePkg.py
|
||||
|
||||
|
||||
GLADEFILES = desbrowse.glade \
|
||||
eventcmp.glade \
|
||||
gedcomexport.glade \
|
||||
gedcomimport.glade \
|
||||
merge.glade \
|
||||
pafexport.glade \
|
||||
patchnames.glade \
|
||||
pkgexport.glade \
|
||||
readgedcom.glade \
|
||||
relcalc.glade \
|
||||
soundex.glade \
|
||||
summary.glade \
|
||||
verify.glade
|
||||
|
||||
GLADEFILES := ${wildcard *.glade}
|
||||
|
||||
pkgdata_DATA = ${GLADEFILES}
|
||||
dist_pkgdata_DATA = ${pkgdata_DATA}
|
||||
@ -204,7 +248,7 @@ top_distdir = ../..
|
||||
distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@list='$(DISTFILES)'; for file in $$list; do \
|
||||
@for file in $(DISTFILES); do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
@ -250,7 +294,7 @@ mostlyclean-generic:
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-rm -f Makefile $(CONFIG_CLEAN_FILES)
|
||||
-rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]*
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Makefile.in generated by automake 1.6.2 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.6.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
|
||||
@ -49,7 +49,6 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = @program_transform_name@
|
||||
@ -138,7 +137,7 @@ top_distdir = ../..
|
||||
distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@list='$(DISTFILES)'; for file in $$list; do \
|
||||
@for file in $(DISTFILES); do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
@ -184,7 +183,7 @@ clean-generic:
|
||||
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
||||
|
||||
distclean-generic:
|
||||
-rm -f Makefile $(CONFIG_CLEAN_FILES)
|
||||
-rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]*
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
|
Loading…
Reference in New Issue
Block a user