diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | rpkid/Makefile | 6 |
2 files changed, 7 insertions, 1 deletions
@@ -1,6 +1,6 @@ # $Id$ -SUBDIRS = openssl rcynic tests pow +SUBDIRS = openssl rcynic tests pow rpkid all install clean: @for i in ${SUBDIRS}; do echo "Making $@ in $$i"; (cd $$i && make $@); done diff --git a/rpkid/Makefile b/rpkid/Makefile index 1801995c..46a0e86d 100644 --- a/rpkid/Makefile +++ b/rpkid/Makefile @@ -16,6 +16,12 @@ all:: up-down-schema.rng up-down-schema.rng: up-down-schema.rnc trang up-down-schema.rnc up-down-schema.rng +clean: + find . -type f -name '*.pyc' -delete + +install: + @true + dont-run-trang: touch *.rng |