added automake stuff
svn: r5806
This commit is contained in:
parent
3483b770a6
commit
f704db5004
@ -1,3 +1,6 @@
|
|||||||
|
2006-01-20 Richard Taylor <rjt-gramps@thegrindstone.me.uk>
|
||||||
|
* src/ObjectSelector/Makefile.am: added automake stuff.
|
||||||
|
|
||||||
2006-01-20 Richard Taylor <rjt-gramps@thegrindstone.me.uk>
|
2006-01-20 Richard Taylor <rjt-gramps@thegrindstone.me.uk>
|
||||||
* src/ObjectSelector/_Constants.py, src/ObjectSelector/_Factories.py,
|
* src/ObjectSelector/_Constants.py, src/ObjectSelector/_Factories.py,
|
||||||
src/ObjectSelector/_FamilyFilterFrame.py,src/ObjectSelector/_FamilyFrame.py,
|
src/ObjectSelector/_FamilyFilterFrame.py,src/ObjectSelector/_FamilyFrame.py,
|
||||||
|
@ -230,6 +230,7 @@ Makefile
|
|||||||
src/Makefile
|
src/Makefile
|
||||||
src/const.py
|
src/const.py
|
||||||
src/RelLib/Makefile
|
src/RelLib/Makefile
|
||||||
|
src/ObjectSelector/Makefile
|
||||||
src/GrampsDb/Makefile
|
src/GrampsDb/Makefile
|
||||||
src/docgen/Makefile
|
src/docgen/Makefile
|
||||||
src/plugins/Makefile
|
src/plugins/Makefile
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# $Id$
|
# $Id$
|
||||||
|
|
||||||
# This is the src level Makefile for Gramps
|
# This is the src level Makefile for Gramps
|
||||||
SUBDIRS = docgen plugins dates data po GrampsDb RelLib
|
SUBDIRS = docgen plugins dates data po GrampsDb RelLib ObjectSelector
|
||||||
|
|
||||||
# For intl. support, how do we compile?
|
# For intl. support, how do we compile?
|
||||||
MOSTLYCLEANFILES =
|
MOSTLYCLEANFILES =
|
||||||
|
35
src/ObjectSelector/Makefile.am
Normal file
35
src/ObjectSelector/Makefile.am
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# This is the src/RelLib 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
|
||||||
|
|
||||||
|
pkgdatadir = $(datadir)/@PACKAGE@/ObjectSelector
|
||||||
|
|
||||||
|
pkgdata_PYTHON = \
|
||||||
|
_Constants.py\
|
||||||
|
_Factories.py\
|
||||||
|
_FamilyFilterFrame.py\
|
||||||
|
_FamilyFrame.py\
|
||||||
|
_FamilyPreviewFrame.py\
|
||||||
|
_FamilyTreeFrame.py\
|
||||||
|
_FilterFrameBase.py\
|
||||||
|
_FilterSpec.py\
|
||||||
|
_FilterSpecBase.py\
|
||||||
|
_ObjectFrameBase.py\
|
||||||
|
_ObjectSelectorResult.py\
|
||||||
|
_ObjectSelectorWindow.py\
|
||||||
|
_PersonFilterFrame.py\
|
||||||
|
_PersonFilterSpec.py\
|
||||||
|
_PersonFrame.py\
|
||||||
|
_PersonPreviewFrame.py\
|
||||||
|
_PersonTreeFrame.py\
|
||||||
|
__init__.py
|
||||||
|
|
||||||
|
pkgpyexecdir = @pkgpyexecdir@/ObjectSelector
|
||||||
|
pkgpythondir = @pkgpythondir@/ObjectSelector
|
||||||
|
|
||||||
|
GRAMPS_PY_MODPATH = "../"
|
||||||
|
|
||||||
|
pycheck:
|
||||||
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
||||||
|
pychecker $(pkgdata_PYTHON));
|
Loading…
Reference in New Issue
Block a user