mirror of
https://github.com/sheumann/hush.git
synced 2024-11-02 17:05:18 +00:00
e3ed156eeb
properly (see tests/syslog_test.c for example). -Erik
34 lines
640 B
Makefile
34 lines
640 B
Makefile
# busybox/tests/Makefile - Run through all defined tests.
|
|
# ------------------------
|
|
# Copyright (C) 2000 Karl M. Hegbloom <karlheg@debian.org> GPL
|
|
|
|
all:: message_header
|
|
|
|
message_header:
|
|
@echo
|
|
@echo BusyBox Test Suite.
|
|
@echo
|
|
|
|
clean::
|
|
|
|
distclean: clean
|
|
|
|
.PHONY: all clean distclean message_header
|
|
|
|
include $(wildcard *_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 $@
|
|
|
|
syslog_test: syslog_test.c
|