aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-02-07 05:29:42 +0000
committerErik Andersen <andersen@codepoet.org>2000-02-07 05:29:42 +0000
commitfac10d7c59f7db0facd5fb94de273310b9ec86e6 (patch)
treedccf8f905fc5807239883da9fca6597037d487fc /tests/Makefile
parent50bc101b7d6e847a9a0621ca3eb28c7117d095e5 (diff)
downloadbusybox-w32-fac10d7c59f7db0facd5fb94de273310b9ec86e6.tar.gz
busybox-w32-fac10d7c59f7db0facd5fb94de273310b9ec86e6.tar.bz2
busybox-w32-fac10d7c59f7db0facd5fb94de273310b9ec86e6.zip
A few minor updates. ;-)
Seriously though, read the Changelog for busybox 0.42, which this is about to become... -Erik
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile
new file mode 100644
index 000000000..015634460
--- /dev/null
+++ b/tests/Makefile
@@ -0,0 +1,28 @@
1all test_all: message_header cp_tests mv_tests ln_tests
2
3clean: cp_clean mv_clean ln_clean
4
5message_header:
6 @echo
7 @echo If tests faile due to differences in timestamps in commands that are not set
8 @echo to preserve timestamps, just run the tests again.
9 @echo
10
11include cp_tests.mk
12include mv_tests.mk
13include ln_tests.mk
14
15BBL := $(shell pushd .. >/dev/null && \
16 ${MAKE} busybox.links >/dev/null && \
17 popd >/dev/null && \
18 cat ../busybox.links | \
19 sed -e 's,.*/\(.*\)$$,\1,')
20
21../busybox:
22 cd .. && ${MAKE} busybox
23
24$(BBL): ../busybox
25 rm -f $@
26 ln ../busybox $@
27
28.PHONY: all test_all message_header