~zeitgeist/zeitgeist/cleanup

« back to all changes in this revision

Viewing changes to _zeitgeist/Makefile.am

  • Committer: Siegfried-Angel Gevatter Pujals
  • Date: 2009-07-11 23:20:37 UTC
  • mto: This revision was merged to the branch mainline in revision 1018.
  • Revision ID: rainct@ubuntu.com-20090711232037-hed743pyaqn07uj1
Separate source into a public and a private module.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
SUBDIRS = engine loggers
2
2
 
3
 
appdir = $(pythondir)/zeitgeist/
 
3
appdir = $(prefix)/share/zeitgeist/_zeitgeist/
4
4
 
5
5
app_PYTHON = \
6
6
        __init__.py \
7
 
        datamodel.py \
8
 
        dbusutils.py \
9
7
        lrucache.py \
10
8
        singleton.py
11
 
 
12
 
nodist_app_PYTHON = config.py
13
 
 
14
 
config.py: config.py.in
15
 
        sed                                             \
16
 
                -e s!\@prefix\@!$(prefix)!              \
17
 
                -e s!\@datadir\@!$(datadir)!            \
18
 
                -e s!\@pkgdatadir\@!$(pkgdatadir)!      \
19
 
                -e s!\@libexecdir\@!$(libexecdir)!      \
20
 
                -e s!\@libdir\@!$(libdir)!              \
21
 
                -e s!\@PACKAGE\@!$(PACKAGE)!            \
22
 
                -e s!\@VERSION\@!$(VERSION)!            \
23
 
                < $< > $@
24
 
config.py: Makefile
25
 
 
26
 
CLEANFILES = config.py
27
 
EXTRA_DIST = config.py.in
28
 
 
29
 
all-local: config.py