From fac10d7c59f7db0facd5fb94de273310b9ec86e6 Mon Sep 17 00:00:00 2001 From: Erik Andersen Date: Mon, 7 Feb 2000 05:29:42 +0000 Subject: A few minor updates. ;-) Seriously though, read the Changelog for busybox 0.42, which this is about to become... -Erik --- tests/Makefile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tests/Makefile (limited to 'tests/Makefile') diff --git a/tests/Makefile b/tests/Makefile new file mode 100644 index 0000000..0156344 --- /dev/null +++ b/tests/Makefile @@ -0,0 +1,28 @@ +all test_all: message_header cp_tests mv_tests ln_tests + +clean: cp_clean mv_clean ln_clean + +message_header: + @echo + @echo If tests faile due to differences in timestamps in commands that are not set + @echo to preserve timestamps, just run the tests again. + @echo + +include cp_tests.mk +include mv_tests.mk +include ln_tests.mk + +BBL := $(shell pushd .. >/dev/null && \ + ${MAKE} busybox.links >/dev/null && \ + popd >/dev/null && \ + cat ../busybox.links | \ + sed -e 's,.*/\(.*\)$$,\1,') + +../busybox: + cd .. && ${MAKE} busybox + +$(BBL): ../busybox + rm -f $@ + ln ../busybox $@ + +.PHONY: all test_all message_header -- cgit v1.1