2000-03-05 02:49:32 +05:30
|
|
|
# busybox/tests/Makefile - Run through all defined tests.
|
|
|
|
# ------------------------
|
|
|
|
# Copyright (C) 2000 Karl M. Hegbloom <karlheg@debian.org> GPL
|
2000-02-07 10:59:42 +05:30
|
|
|
|
2000-03-05 02:49:32 +05:30
|
|
|
all:: message_header
|
2000-02-07 10:59:42 +05:30
|
|
|
|
|
|
|
message_header:
|
|
|
|
@echo
|
2000-03-05 02:49:32 +05:30
|
|
|
@echo BusyBox Test Suite.
|
2000-02-07 10:59:42 +05:30
|
|
|
@echo
|
2000-08-22 04:31:39 +05:30
|
|
|
(cd ..; tests/busybox.REGRESS.sh)
|
2000-02-07 10:59:42 +05:30
|
|
|
|
2000-03-05 02:49:32 +05:30
|
|
|
clean::
|
|
|
|
|
|
|
|
distclean: clean
|
|
|
|
|
|
|
|
.PHONY: all clean distclean message_header
|
|
|
|
|
|
|
|
include $(wildcard *_tests.mk)
|
2000-02-07 10:59:42 +05:30
|
|
|
|
|
|
|
BBL := $(shell pushd .. >/dev/null && \
|
|
|
|
${MAKE} busybox.links >/dev/null && \
|
|
|
|
popd >/dev/null && \
|
|
|
|
cat ../busybox.links | \
|
|
|
|
sed -e 's,.*/\(.*\)$$,\1,')
|
|
|
|
|
|
|
|
../busybox:
|
|
|
|
cd .. && ${MAKE} busybox
|
|
|
|
|
2000-03-05 02:49:32 +05:30
|
|
|
${BBL}: ../busybox
|
2000-02-07 10:59:42 +05:30
|
|
|
rm -f $@
|
|
|
|
ln ../busybox $@
|
2000-04-20 00:22:56 +05:30
|
|
|
|
|
|
|
syslog_test: syslog_test.c
|