aboutsummaryrefslogtreecommitdiffstats
path: root/text_cmds/sort/Makefile
blob: 64c9ff022e481f55059258bd90575942ddf67937 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $FreeBSD$

PROG=	sort

SRCS=	bwstring.c coll.c commoncrypto.c file.c \
	mem.c radixsort.c sort.c vsort.c

sort.1: sort.1.in
	sed ${MAN_SUB} ${.ALLSRC} >${.TARGET}

CLEANFILES+= sort.1

CFLAGS+= -DSORT_THREADS
MAN_SUB+= -e 's|%%THREADS%%||g'

# Current text_cmds version
CFLAGS+=-DSORT_VERSION=\"106\"

.include <bsd.prog.mk>