|
0
|
1 |
pythonlib_DATA = \
|
|
|
2 |
__init__.py __init__.pyc __init__.pyo \
|
|
|
3 |
commands.py commands.pyc commands.pyo \
|
|
|
4 |
config.py config.pyc config.pyo \
|
|
|
5 |
constants.py constants.pyc constants.pyo \
|
|
|
6 |
daemon.py daemon.pyc daemon.pyo \
|
|
|
7 |
local.py local.pyc local.pyo \
|
|
|
8 |
types.py types.pyc types.pyo
|
|
|
9 |
EXTRA_DIST = __init__.py commands.py config.py constants.py daemon.py types.py
|
|
|
10 |
CLEANFILES = local.py *.pyc *.pyo
|
|
|
11 |
|
|
|
12 |
local.py: Makefile
|
|
|
13 |
echo "sysconfdir = '${sysconfdir}'" >$@
|
|
|
14 |
|
|
|
15 |
__init__.pyc: __init__.py local.py
|
|
|
16 |
__init__.pyo: __init__.py local.py
|
|
|
17 |
commands.pyc: commands.py local.py
|
|
|
18 |
commands.pyo: commands.py local.py
|
|
|
19 |
config.pyc: config.py local.py
|
|
|
20 |
config.pyo: config.py local.py
|
|
|
21 |
constants.pyc: constants.py local.py
|
|
|
22 |
constants.pyo: constants.py local.py
|
|
|
23 |
daemon.pyc: daemon.py local.py
|
|
|
24 |
daemon.pyo: daemon.py local.py
|
|
|
25 |
types.pyc: types.py local.py
|
|
|
26 |
types.pyo: types.py local.py
|
|
|
27 |
|
|
|
28 |
.py.pyc:
|
|
2
|
29 |
python -c 'import $*' && touch $@
|
|
0
|
30 |
.py.pyo:
|
|
2
|
31 |
python -O -c 'import $*' && touch $@
|