aboutsummaryrefslogtreecommitdiff
path: root/rpkid/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'rpkid/Makefile')
-rw-r--r--rpkid/Makefile12
1 files changed, 4 insertions, 8 deletions
diff --git a/rpkid/Makefile b/rpkid/Makefile
index 3a5c9ea1..797bc115 100644
--- a/rpkid/Makefile
+++ b/rpkid/Makefile
@@ -38,7 +38,7 @@ all-tests:: unit-tests
all-tests:: relaxng
-test all-tests parse-test::
+test all-tests parse-test profile::
cd tests; $(MAKE) $@
@@ -48,6 +48,9 @@ irbe_cli.usage: irbe_cli.py
tags:
find . -type f \( -name '*.py' -o -name '*.sql' -o -name '*.rnc' \) ! -name relaxng.py | etags -
+lint:
+ pylint --rcfile ../scripts/pylint.rc rpki/[a-z]*.py irbe_cli.py irdbd.py pubd.py rootd.py rpkid.py tests/smoketest.py tests/testpoke.py ../myrpki/myrpki.py ../myrpki/yamltest.py
+
# Documentation
doc/irdbd.dot: irdbd.sql
@@ -81,10 +84,3 @@ docs::
done
cd doc/latex && TZ='' ${MAKE} && ln -f refman.pdf ../manual.pdf
cd doc && tar -cf - html | gzip -9 >manual.tar.gz
-
-lint:
- pylint --rcfile ../scripts/pylint.rc rpki/[a-z]*.py irbe_cli.py irdbd.py pubd.py rootd.py rpkid.py tests/testbed.py tests/testpoke.py ../myrpki/myrpki.py ../myrpki/yamltest.py
-
-profile: all
- python testbed.py -y testbed.2.yaml -p
- for i in testbed.dir/*.prof; do python -c "import pstats;pstats.Stats('$$i').sort_stats('time').print_stats()"; done