]> git.cameronkatri.com Git - apple_cmds.git/blob - text_cmds/sort/Makefile
64c9ff022e481f55059258bd90575942ddf67937
[apple_cmds.git] / text_cmds / sort / Makefile
1 # $FreeBSD$
2
3 PROG= sort
4
5 SRCS= bwstring.c coll.c commoncrypto.c file.c \
6 mem.c radixsort.c sort.c vsort.c
7
8 sort.1: sort.1.in
9 sed ${MAN_SUB} ${.ALLSRC} >${.TARGET}
10
11 CLEANFILES+= sort.1
12
13 CFLAGS+= -DSORT_THREADS
14 MAN_SUB+= -e 's|%%THREADS%%||g'
15
16 # Current text_cmds version
17 CFLAGS+=-DSORT_VERSION=\"106\"
18
19 .include <bsd.prog.mk>