~ubuntu-branches/ubuntu/utopic/gramps/utopic

« back to all changes in this revision

Viewing changes to src/gui/Makefile.am

  • Committer: Package Import Robot
  • Author(s): James A. Treacy
  • Date: 2012-05-22 17:18:36 UTC
  • mfrom: (39.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20120522171836-35fi62lp4w7jnrd7
Tags: 3.4.0-1
* New upstream version
* Updated desktop file. Closes: #667472

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# This is the src/RelLib level Makefile for Gramps
 
2
# $Id: Makefile.am 18851 2012-02-10 20:25:15Z josipsf $
2
3
# We could use GNU make's ':=' syntax for nice wildcard use,
3
4
# but that is not necessarily portable.
4
5
# If not using GNU make, then list all .py files individually
10
11
        views \
11
12
        widgets
12
13
 
13
 
pkgdatadir = $(datadir)/@PACKAGE@/gui
 
14
pkgpythondir = $(datadir)/@PACKAGE@/gui
14
15
 
15
 
pkgdata_PYTHON = \
 
16
pkgpython_PYTHON = \
16
17
        __init__.py \
17
18
        aboutdialog.py \
18
19
        basesidebar.py \
27
28
        navigator.py \
28
29
        makefilter.py \
29
30
        pluginmanager.py \
 
31
        user.py \
30
32
        utils.py \
31
33
        viewmanager.py
32
34
 
33
35
pkgpyexecdir = @pkgpyexecdir@/gui
34
 
pkgpythondir = @pkgpythondir@/gui
35
 
 
36
36
 
37
37
# Clean up all the byte-compiled files
38
38
MOSTLYCLEANFILES = *pyc *pyo
41
41
 
42
42
pycheck: 
43
43
        (export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
44
 
        pychecker $(pkgdata_PYTHON));
 
44
        pychecker $(pkgpython_PYTHON));