59b3434621
* src/Filters/Makefile.am (pkgdata_PYTHON): Ship new file. svn: r7129
34 lines
679 B
Makefile
34 lines
679 B
Makefile
# This is the src/Filters level Makefile for Gramps
|
|
|
|
SUBDIRS = Rules
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@/Filters
|
|
|
|
pkgdata_PYTHON = \
|
|
_EventSidebarFilter.py \
|
|
_FamilySidebarFilter.py \
|
|
_FilterComboBox.py \
|
|
_FilterList.py \
|
|
_FilterMenu.py \
|
|
_FilterParser.py \
|
|
_FilterStore.py \
|
|
_GenericFilter.py \
|
|
_ParamFilter.py \
|
|
__init__.py \
|
|
_SearchBar.py \
|
|
_SearchFilter.py \
|
|
_SidebarFilter.py \
|
|
_PersonSidebarFilter.py
|
|
|
|
pkgpyexecdir = @pkgpyexecdir@/Filters
|
|
pkgpythondir = @pkgpythondir@/Filters
|
|
|
|
# Clean up all the byte-compiled files
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
GRAMPS_PY_MODPATH = "../"
|
|
|
|
pycheck:
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
|
pychecker $(pkgdata_PYTHON));
|