Deleted Added
full compact
Makefile (256281) Makefile (277446)
1# $FreeBSD: stable/10/tools/regression/lib/libc/stdio/Makefile 254151 2013-08-09 17:24:23Z jilles $
1# $FreeBSD: stable/10/tools/regression/lib/libc/stdio/Makefile 277446 2015-01-20 21:59:48Z ngie $
2
2
3TESTS= test-fmemopen test-getdelim test-mkostemp test-open_memstream \
4 test-open_wmemstream test-perror test-print-positional test-printbasic \
5 test-printfloat test-scanfloat
3TESTS= test-fopen \
4 test-getdelim \
5 test-mkostemp \
6 test-open_memstream \
7 test-open_wmemstream \
8 test-perror \
9 test-print-positional \
10 test-printbasic \
11 test-printfloat \
12 test-scanfloat
13
6CFLAGS+= -lm
7
8.PHONY: tests
9tests: ${TESTS}
10 for p in ${TESTS}; do ${.OBJDIR}/$$p; done
11
12.PHONY: clean
13clean:
14 -rm -f ${TESTS}
14CFLAGS+= -lm
15
16.PHONY: tests
17tests: ${TESTS}
18 for p in ${TESTS}; do ${.OBJDIR}/$$p; done
19
20.PHONY: clean
21clean:
22 -rm -f ${TESTS}