ea394fd4d2
* src/RelLib/_SecondaryObject.py: added, provide is_equal * src/RelLib/_Url.py: inherit from SecondaryObject * src/RelLib/_MediaRef.py: inherit from SecondaryObject * src/RelLib/_ChildRef.py: inherit from SecondaryObject * src/RelLib/_Name.py: inherit from SecondaryObject * src/RelLib/_Address.py: inherit from SecondaryObject * src/RelLib/_SourceRef.py: inherit from SecondaryObject * src/RelLib/_RepoRef.py: inherit from SecondaryObject * src/RelLib/_PersonRef.py: inherit from SecondaryObject * src/RelLib/_Attribute.py: inherit from SecondaryObject * src/RelLib/_Note.py: inherit from SecondaryObject * src/RelLib/_Location.py: inherit from SecondaryObject * src/RelLib/_EventRef.py: inherit from SecondaryObject * src/RelLib/_Event.py: inherit from SecondaryObject * src/RelLib/_LdsOrd.py: inherit from SecondaryObject svn: r6720
75 lines
1.4 KiB
Makefile
75 lines
1.4 KiB
Makefile
# 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@/RelLib
|
|
|
|
pkgdata_PYTHON = \
|
|
_AddressBase.py\
|
|
_Address.py\
|
|
_AttributeBase.py\
|
|
_Attribute.py\
|
|
_BaseObject.py\
|
|
_CalSdn.py \
|
|
_Date.py \
|
|
_DateBase.py\
|
|
_Event.py\
|
|
_EventType.py\
|
|
_EventRef.py\
|
|
_Family.py\
|
|
_GenderStats.py\
|
|
_GrampsType.py\
|
|
__init__.py\
|
|
_LdsOrdBase.py\
|
|
_LdsOrd.py\
|
|
_LocationBase.py\
|
|
_Location.py\
|
|
_MediaBase.py\
|
|
_MediaObject.py\
|
|
_MediaRef.py\
|
|
_Name.py\
|
|
_NameType.py\
|
|
_NoteBase.py\
|
|
_Note.py\
|
|
_Person.py\
|
|
_PersonRef.py\
|
|
_PlaceBase.py\
|
|
_Place.py\
|
|
_PrimaryObject.py\
|
|
_PrivacyBase.py\
|
|
_PrivateSourceNote.py\
|
|
_RepoRef.py\
|
|
_Repository.py\
|
|
_RepositoryType.py\
|
|
_Researcher.py\
|
|
_SecondaryObject.py\
|
|
_SourceNote.py\
|
|
_Source.py\
|
|
_SourceRef.py\
|
|
_UrlBase.py\
|
|
_UrlType.py\
|
|
_Url.py\
|
|
_Witness.py\
|
|
_SourceBase.py\
|
|
_RefBase.py\
|
|
_ChildRef.py\
|
|
_AttributeType.py\
|
|
_ChildRefType.py\
|
|
_FamilyRelType.py\
|
|
_SourceMediaType.py\
|
|
_MarkerType.py\
|
|
_EventRoleType.py
|
|
|
|
pkgpyexecdir = @pkgpyexecdir@/RelLib
|
|
pkgpythondir = @pkgpythondir@/RelLib
|
|
|
|
# Clean up all the byte-compiled files
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
GRAMPS_PY_MODPATH = "../"
|
|
|
|
pycheck:
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
|
pychecker $(pkgdata_PYTHON));
|