]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - tools/regression/lib/libc/stdio/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / tools / regression / lib / libc / stdio / Makefile
1 # $FreeBSD$
2
3 TESTS=  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
14 CFLAGS+= -lm
15
16 .PHONY: tests
17 tests: ${TESTS}
18         for p in ${TESTS}; do ${.OBJDIR}/$$p; done
19
20 .PHONY: clean
21 clean:
22         -rm -f ${TESTS}