aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2014-04-07 03:18:50 +0000
committerRob Austein <sra@hactrn.net>2014-04-07 03:18:50 +0000
commit8a54b07cc85256a8fe9132c3d0422b31f2570a1c (patch)
tree86c5713730e8e62f8914686a8cf7a48ce3921070 /Makefile.in
parentd8eb94e6f5d7f23d1c208339052587647f60416d (diff)
Fix schema generation.
svn path=/branches/tk685/; revision=5760
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in17
1 files changed, 3 insertions, 14 deletions
diff --git a/Makefile.in b/Makefile.in
index 1394a6cb..71dab019 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -42,8 +42,9 @@ export:
tar czf subvert-rpki.hactrn.net-$$(date +%Y.%m.%d).tar.gz subvert-rpki.hactrn.net
rm -rf subvert-rpki.hactrn.net
-distclean clean::
- rm -rf build autom4te.cache
+clean distclean::
+ rm -rf build autom4te.cache rpki/autoconf.py setup_autoconf.py setup_autoconf.pyc ${POW_SO} build dist
+ find . -type f -name '*.py[co]' -delete
distclean::
rm -rf Makefile config.log config.status
@@ -73,9 +74,6 @@ rpki/autoconf.py: Makefile
echo 'WSGI_PYTHON_EGG_CACHE_USER = "${WSGI_PYTHON_EGG_CACHE_USER}"'; \
) > $@
-clean::
- rm -f rpki/autoconf.py
-
setup_autoconf.py: rpki/autoconf.py
@echo 'Generating $@'; \
(cat rpki/autoconf.py; \
@@ -85,9 +83,6 @@ setup_autoconf.py: rpki/autoconf.py
echo 'LIBS = """${LIBS}"""'; \
) > $@
-clean::
- rm -f setup_autoconf.py setup_autoconf.pyc
-
SETUP_PY_ROOT = `${PYTHON} -c 'import sys; print "--root " + sys.argv[1] if sys.argv[1] else ""' '${DESTDIR}'`
POW_SO = rpki/POW/_POW.so
@@ -102,9 +97,3 @@ ${POW_SO}: .FORCE setup_autoconf.py
build/stamp: .FORCE setup_autoconf.py
${PYTHON} setup.py build
touch $@
-
-clean::
- rm -rf ${POW_SO} build dist
-
-clean::
- find . -type f -name '*.py[co]' -delete