blob: 98c236b1b78d7ab92d89fa9909e59c651a020918 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
## Process this file with automake to produce Makefile.in
appdir = $(pythondir)/Mozo
app_PYTHON = __init__.py MainWindow.py MenuEditor.py util.py
nodist_app_PYTHON = config.py
config.py: config.py.in
$(AM_V_GEN)sed \
-e s!\@prefix\@!$(prefix)! \
-e s!\@datadir\@!$(datadir)! \
-e s!\@pkgdatadir\@!$(pkgdatadir)! \
-e s!\@PACKAGE\@!$(PACKAGE)! \
-e s!\@VERSION\@!$(VERSION)! \
-e s!\@GETTEXT_PACKAGE\@!$(GETTEXT_PACKAGE)! \
< $< > $@
config.py: Makefile
CLEANFILES = config.py
EXTRA_DIST = \
config.py.in \
meson.build
all-local: config.py
|