18984b840e
* src/DataViews/__init__.py: Add NoteView * src/DataViews/_NoteView.py: Added * src/Config/_GrampsConfigKeys.py: Added new keys to handle note dialog width * src/Editors/__init__.py: Add _EditNote.py * src/Editors/_EditNote.py: Added * src/DisplayTabs/_NoteTab.py: Updated to the new list format * src/GrampsWidgets.py: Add checkbox support * src/glade/gramps.glade: Added edit_note * data/gramps.schemas.in: new keys svn: r8240
45 lines
983 B
Makefile
45 lines
983 B
Makefile
# This is the src/Editors 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@/Editors
|
|
|
|
pkgdata_PYTHON = \
|
|
__init__.py\
|
|
_EditAddress.py \
|
|
_EditAttribute.py \
|
|
_EditChildRef.py \
|
|
_EditEvent.py \
|
|
_EditEventRef.py \
|
|
_EditFamily.py \
|
|
_EditLdsOrd.py \
|
|
_EditLocation.py \
|
|
_EditMedia.py \
|
|
_EditMediaRef.py \
|
|
_EditName.py \
|
|
_EditPerson.py \
|
|
_EditPersonRef.py \
|
|
_EditPlace.py \
|
|
_EditPrimary.py \
|
|
_EditReference.py \
|
|
_EditRepository.py \
|
|
_EditRepoRef.py \
|
|
_EditSecondary.py \
|
|
_EditSource.py \
|
|
_EditSourceRef.py \
|
|
_EditNote.py \
|
|
_EditUrl.py
|
|
|
|
pkgpyexecdir = @pkgpyexecdir@/Editors
|
|
pkgpythondir = @pkgpythondir@/Editors
|
|
|
|
# Clean up all the byte-compiled files
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
GRAMPS_PY_MODPATH = "../"
|
|
|
|
pycheck:
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
|
pychecker $(pkgdata_PYTHON));
|