* src/Makefile.am: Clean byte-compiled files.
* src/DataViews/Makefile.am: Clean byte-compiled files. * src/GrampsDb/Makefile.am: Clean byte-compiled files. * src/Config/Makefile.am: Clean byte-compiled files. * src/RelLib/Makefile.am: Clean byte-compiled files. * src/Editors/Makefile.am: Clean byte-compiled files. * src/plugins/Makefile.am: Clean byte-compiled files. * src/ObjectSelector/Makefile.am: Clean byte-compiled files. * src/TreeViews/Makefile.am: Clean byte-compiled files. * src/Models/Makefile.am: Clean byte-compiled files. * src/Mime/Makefile.am: Clean byte-compiled files. * src/GrampsLogger/Makefile.am: Clean byte-compiled files. * src/PluginUtils/Makefile.am: Clean byte-compiled files. * src/docgen/Makefile.am: Clean byte-compiled files. * src/DateHandler/Makefile.am: Clean byte-compiled files. svn: r6295
This commit is contained in:
parent
ebf97d467f
commit
3360368431
@ -1,3 +1,20 @@
|
||||
2006-04-09 Alex Roitman <shura@gramps-project.org>
|
||||
* src/Makefile.am: Clean byte-compiled files.
|
||||
* src/DataViews/Makefile.am: Clean byte-compiled files.
|
||||
* src/GrampsDb/Makefile.am: Clean byte-compiled files.
|
||||
* src/Config/Makefile.am: Clean byte-compiled files.
|
||||
* src/RelLib/Makefile.am: Clean byte-compiled files.
|
||||
* src/Editors/Makefile.am: Clean byte-compiled files.
|
||||
* src/plugins/Makefile.am: Clean byte-compiled files.
|
||||
* src/ObjectSelector/Makefile.am: Clean byte-compiled files.
|
||||
* src/TreeViews/Makefile.am: Clean byte-compiled files.
|
||||
* src/Models/Makefile.am: Clean byte-compiled files.
|
||||
* src/Mime/Makefile.am: Clean byte-compiled files.
|
||||
* src/GrampsLogger/Makefile.am: Clean byte-compiled files.
|
||||
* src/PluginUtils/Makefile.am: Clean byte-compiled files.
|
||||
* src/docgen/Makefile.am: Clean byte-compiled files.
|
||||
* src/DateHandler/Makefile.am: Clean byte-compiled files.
|
||||
|
||||
2006-04-09 Don Allingham <don@gramps-project.org>
|
||||
* src/plugins/*: bring up to ManagedWindow
|
||||
|
||||
|
@ -13,6 +13,9 @@ pkgdata_PYTHON = \
|
||||
pkgpyexecdir = @pkgpyexecdir@/Config
|
||||
pkgpythondir = @pkgpythondir@/Config
|
||||
|
||||
# Clean up all the byte-compiled files
|
||||
MOSTLYCLEANFILES = *pyc *pyo
|
||||
|
||||
GRAMPS_PY_MODPATH = "../"
|
||||
|
||||
pycheck:
|
||||
|
@ -21,6 +21,9 @@ pkgdata_PYTHON = \
|
||||
pkgpyexecdir = @pkgpyexecdir@/DataViews
|
||||
pkgpythondir = @pkgpythondir@/DataViews
|
||||
|
||||
# Clean up all the byte-compiled files
|
||||
MOSTLYCLEANFILES = *pyc *pyo
|
||||
|
||||
GRAMPS_PY_MODPATH = "../"
|
||||
|
||||
pycheck:
|
||||
|
@ -22,6 +22,9 @@ pkgdata_PYTHON = \
|
||||
pkgpyexecdir = @pkgpyexecdir@/DateHandler
|
||||
pkgpythondir = @pkgpythondir@/DateHandler
|
||||
|
||||
# Clean up all the byte-compiled files
|
||||
MOSTLYCLEANFILES = *pyc *pyo
|
||||
|
||||
GRAMPS_PY_MODPATH = ".."
|
||||
|
||||
pycheck:
|
||||
|
@ -31,6 +31,9 @@ pkgdata_PYTHON = \
|
||||
pkgpyexecdir = @pkgpyexecdir@/Editors
|
||||
pkgpythondir = @pkgpythondir@/Editors
|
||||
|
||||
# Clean up all the byte-compiled files
|
||||
MOSTLYCLEANFILES = *pyc *pyo
|
||||
|
||||
GRAMPS_PY_MODPATH = "../"
|
||||
|
||||
pycheck:
|
||||
|
@ -35,6 +35,9 @@ GLADEFILES = \
|
||||
|
||||
dist_pkgdata_DATA = $(GLADEFILES)
|
||||
|
||||
# Clean up all the byte-compiled files
|
||||
MOSTLYCLEANFILES = *pyc *pyo
|
||||
|
||||
GRAMPS_PY_MODPATH = "../"
|
||||
|
||||
pycheck:
|
||||
|
@ -15,6 +15,9 @@ pkgdata_PYTHON = \
|
||||
pkgpyexecdir = @pkgpyexecdir@/GrampsLogger
|
||||
pkgpythondir = @pkgpythondir@/GrampsLogger
|
||||
|
||||
# Clean up all the byte-compiled files
|
||||
MOSTLYCLEANFILES = *pyc *pyo
|
||||
|
||||
GRAMPS_PY_MODPATH = "../"
|
||||
|
||||
pycheck:
|
||||
|
@ -20,25 +20,8 @@ SUBDIRS = \
|
||||
images \
|
||||
plugins
|
||||
|
||||
# For intl. support, how do we compile?
|
||||
MOSTLYCLEANFILES =
|
||||
CLEANFILES = const.pyc const.pyo
|
||||
|
||||
# What are the PYTHON scripts for this package that need to be handled?
|
||||
#
|
||||
# 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
|
||||
|
||||
gdirdir=$(prefix)/share/gramps
|
||||
|
||||
docfiles = \
|
||||
RelLib.py \
|
||||
Date.py \
|
||||
DateParser.py \
|
||||
DateDisplay.py \
|
||||
GrampsDbBase.py
|
||||
|
||||
gdir_PYTHON = \
|
||||
AddMedia.py\
|
||||
ansel_utf8.py\
|
||||
@ -96,6 +79,12 @@ gdir_PYTHON = \
|
||||
SelectFamily.py\
|
||||
SelectSource.py
|
||||
|
||||
# Clean up all the byte-compiled files
|
||||
MOSTLYCLEANFILES = *pyc *pyo
|
||||
|
||||
# Which modules to document
|
||||
docmodules = RelLib DateHandler GrampsDb
|
||||
|
||||
pycheck:
|
||||
for d in $(SUBDIRS) ; do \
|
||||
(cd $$d; make pycheck); \
|
||||
@ -103,8 +92,8 @@ pycheck:
|
||||
pychecker $(gdir_PYTHON)
|
||||
|
||||
docs:
|
||||
epydoc -o doc --url http://gramps.sourceforge.net --name GRAMPS --html $(docfiles)
|
||||
epydoc --pdf $(docfiles)
|
||||
epydoc -o doc --url http://gramps.sourceforge.net --name GRAMPS --html $(docmodules)
|
||||
epydoc --pdf $(docmodules)
|
||||
|
||||
cmdplug:
|
||||
./build_cmdplug
|
||||
|
@ -13,6 +13,9 @@ pkgdata_PYTHON = \
|
||||
pkgpyexecdir = @pkgpyexecdir@/Mime
|
||||
pkgpythondir = @pkgpythondir@/Mime
|
||||
|
||||
# Clean up all the byte-compiled files
|
||||
MOSTLYCLEANFILES = *pyc *pyo
|
||||
|
||||
GRAMPS_PY_MODPATH = "../"
|
||||
|
||||
pycheck:
|
||||
|
@ -18,6 +18,9 @@ pkgdata_PYTHON = \
|
||||
pkgpyexecdir = @pkgpyexecdir@/Models
|
||||
pkgpythondir = @pkgpythondir@/Models
|
||||
|
||||
# Clean up all the byte-compiled files
|
||||
MOSTLYCLEANFILES = *pyc *pyo
|
||||
|
||||
GRAMPS_PY_MODPATH = "../"
|
||||
|
||||
pycheck:
|
||||
|
@ -28,6 +28,9 @@ pkgdata_PYTHON = \
|
||||
pkgpyexecdir = @pkgpyexecdir@/ObjectSelector
|
||||
pkgpythondir = @pkgpythondir@/ObjectSelector
|
||||
|
||||
# Clean up all the byte-compiled files
|
||||
MOSTLYCLEANFILES = *pyc *pyo
|
||||
|
||||
GRAMPS_PY_MODPATH = "../"
|
||||
|
||||
pycheck:
|
||||
|
@ -20,6 +20,9 @@ pkgdata_PYTHON = \
|
||||
pkgpyexecdir = @pkgpyexecdir@/PluginUtils
|
||||
pkgpythondir = @pkgpythondir@/PluginUtils
|
||||
|
||||
# Clean up all the byte-compiled files
|
||||
MOSTLYCLEANFILES = *pyc *pyo
|
||||
|
||||
GRAMPS_PY_MODPATH = "../"
|
||||
|
||||
pycheck:
|
||||
|
@ -48,6 +48,9 @@ pkgdata_PYTHON = \
|
||||
pkgpyexecdir = @pkgpyexecdir@/RelLib
|
||||
pkgpythondir = @pkgpythondir@/RelLib
|
||||
|
||||
# Clean up all the byte-compiled files
|
||||
MOSTLYCLEANFILES = *pyc *pyo
|
||||
|
||||
GRAMPS_PY_MODPATH = "../"
|
||||
|
||||
pycheck:
|
||||
|
@ -12,6 +12,9 @@ pkgdata_PYTHON = \
|
||||
pkgpyexecdir = @pkgpyexecdir@/TreeViews
|
||||
pkgpythondir = @pkgpythondir@/TreeViews
|
||||
|
||||
# Clean up all the byte-compiled files
|
||||
MOSTLYCLEANFILES = *pyc *pyo
|
||||
|
||||
GRAMPS_PY_MODPATH = "../"
|
||||
|
||||
pycheck:
|
||||
|
@ -20,6 +20,9 @@ docgen_PYTHON = \
|
||||
SvgDrawDoc.py\
|
||||
LPRDoc.py
|
||||
|
||||
# Clean up all the byte-compiled files
|
||||
MOSTLYCLEANFILES = *pyc *pyo
|
||||
|
||||
GRAMPS_PY_MODPATH = "../"
|
||||
|
||||
pycheck:
|
||||
|
@ -98,6 +98,9 @@ DATAFILES = \
|
||||
|
||||
dist_pkgdata_DATA = $(GLADEFILES) $(GRAPHICS) $(DATAFILES)
|
||||
|
||||
# Clean up all the byte-compiled files
|
||||
MOSTLYCLEANFILES = *pyc *pyo
|
||||
|
||||
GRAMPS_PY_MODPATH = "../:../docgen"
|
||||
|
||||
pycheck:
|
||||
|
Loading…
Reference in New Issue
Block a user