Makefile revision 290574
1#	@(#)Makefile	8.1 (Berkeley) 5/31/93
2# $FreeBSD: stable/10/bin/dd/Makefile 290574 2015-11-09 06:50:42Z ngie $
3
4.include <bsd.own.mk>
5
6PROG=	dd
7SRCS=	args.c conv.c conv_tab.c dd.c misc.c position.c
8
9#
10# Test the character conversion functions.  We have to be explicit about
11# which LC_LANG we use because the definition of upper and lower case
12# depends on it.
13#
14
15CLEANFILES=	gen
16
17test: ${PROG} gen
18.for conv in ascii ebcdic ibm oldascii oldebcdic oldibm \
19    pareven parnone parodd parset \
20    swab lcase ucase
21	@${ECHO} testing conv=${conv}
22	@./gen | \
23	    LC_ALL=en_US.US-ASCII ./dd conv=${conv} 2>/dev/null | \
24	    LC_ALL=en_US.US-ASCII hexdump -C | \
25	    diff -I FreeBSD - ${.CURDIR}/ref.${conv}
26.endfor
27	@rm -f gen
28
29.if ${MK_TESTS} != "no"
30SUBDIR+=	tests
31.endif
32
33.include <bsd.prog.mk>
34