blob: 202766e54f671fb5e23f668f6fc2d9a1f1675c3b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $FreeBSD$
SUBDIR = fortran libsrc ncgen ncdump nctest dumper
.include <bsd.subdir.mk>
test: all
@for d in ${SUBDIR} ; do \
echo "===> testing in $$d"; \
cd $$d; \
${MAKE} test; \
cd ..; \
done
|