diff options
author | Rob Austein <sra@hactrn.net> | 2010-12-31 19:57:09 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2010-12-31 19:57:09 +0000 |
commit | bc934a48ac4377c2c6477f490494bf1cebe88e45 (patch) | |
tree | 29ca1deef88d3da478a91538071142f9a4511ac0 /utils | |
parent | 6c764b15f07f87271ff01ca2bc55b0bcd318c74d (diff) |
distclean target
svn path=/Makefile.in; revision=3596
Diffstat (limited to 'utils')
-rw-r--r-- | utils/Makefile.in | 6 | ||||
-rw-r--r-- | utils/find_roa/Makefile.in | 6 | ||||
-rw-r--r-- | utils/hashdir/Makefile.in | 6 | ||||
-rw-r--r-- | utils/print_manifest/Makefile.in | 6 | ||||
-rw-r--r-- | utils/print_roa/Makefile.in | 6 | ||||
-rw-r--r-- | utils/uri/Makefile.in | 6 |
6 files changed, 33 insertions, 3 deletions
diff --git a/utils/Makefile.in b/utils/Makefile.in index 07f45dff..cd00afd9 100644 --- a/utils/Makefile.in +++ b/utils/Makefile.in @@ -2,8 +2,8 @@ SUBDIRS = uri print_manifest print_roa hashdir find_roa -all clean test: +all clean test distclean install:: @for i in ${SUBDIRS}; do echo "Making $@ in $$i"; (cd $$i && ${MAKE} $@); done -install: - @true +distclean:: + rm -f Makefile diff --git a/utils/find_roa/Makefile.in b/utils/find_roa/Makefile.in index 559d1370..4e796feb 100644 --- a/utils/find_roa/Makefile.in +++ b/utils/find_roa/Makefile.in @@ -24,3 +24,9 @@ TEST_ARGS = @top_srcdir@/rcynic/rcynic-data/authenticated 10.3.0.44 10.2.0.6 10. test: ${BIN} # ./${BIN} ${TEST_ARGS} sh ./test_roa.sh ${TEST_ARGS} + +install: + @true + +distclean: clean + rm -f Makefile diff --git a/utils/hashdir/Makefile.in b/utils/hashdir/Makefile.in index 29004c6f..e6e00fa5 100644 --- a/utils/hashdir/Makefile.in +++ b/utils/hashdir/Makefile.in @@ -26,3 +26,9 @@ test: ${BIN} clean:: rm -rf ${OUTPUT} + +install: + @true + +distclean: clean + rm -f Makefile diff --git a/utils/print_manifest/Makefile.in b/utils/print_manifest/Makefile.in index c1d8ca40..2815f439 100644 --- a/utils/print_manifest/Makefile.in +++ b/utils/print_manifest/Makefile.in @@ -24,3 +24,9 @@ MANIFEST_DIR = @top_srcdir@/rpkid/tests/smoketest.dir/publication test: all -date -u +'now: %Y%m%d%H%M%SZ' if test -d ${MANIFEST_DIR}; then find ${MANIFEST_DIR} -type f -name '*.mnf' -print -exec ./${BIN} {} \; ; else :; fi + +install: + @true + +distclean: clean + rm -f Makefile diff --git a/utils/print_roa/Makefile.in b/utils/print_roa/Makefile.in index c4da5730..cf96dac0 100644 --- a/utils/print_roa/Makefile.in +++ b/utils/print_roa/Makefile.in @@ -23,3 +23,9 @@ ROA_DIR = @top_srcdir@/rpkid/tests/smoketest.dir/publication test: all -date -u +'now: %Y%m%d%H%M%SZ' if test -d ${ROA_DIR}; then find ${ROA_DIR} -type f -name '*.roa' -print -exec ./${BIN} {} \; ; else :; fi + +install: + @true + +distclean: clean + rm -f Makefile diff --git a/utils/uri/Makefile.in b/utils/uri/Makefile.in index 88f12de7..56cae7c0 100644 --- a/utils/uri/Makefile.in +++ b/utils/uri/Makefile.in @@ -20,3 +20,9 @@ ${BIN}: ${SRC} test: @true + +install: + @true + +distclean: clean + rm -f Makefile |