diff options
author | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-02-07 05:29:42 +0000 |
---|---|---|
committer | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-02-07 05:29:42 +0000 |
commit | 74bc01e03e96d5a6a318688d2ee8c620f32ce928 (patch) | |
tree | dccf8f905fc5807239883da9fca6597037d487fc /tests/Makefile | |
parent | cac2faf4271a09ae2e37e87cbd7d6ea363667d51 (diff) | |
download | busybox-w32-74bc01e03e96d5a6a318688d2ee8c620f32ce928.tar.gz busybox-w32-74bc01e03e96d5a6a318688d2ee8c620f32ce928.tar.bz2 busybox-w32-74bc01e03e96d5a6a318688d2ee8c620f32ce928.zip |
A few minor updates. ;-)
Seriously though, read the Changelog for busybox 0.42,
which this is about to become...
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@351 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 28 |
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 @@ | |||
1 | all test_all: message_header cp_tests mv_tests ln_tests | ||
2 | |||
3 | clean: cp_clean mv_clean ln_clean | ||
4 | |||
5 | message_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 | |||
11 | include cp_tests.mk | ||
12 | include mv_tests.mk | ||
13 | include ln_tests.mk | ||
14 | |||
15 | BBL := $(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 | ||