aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/sort/Makefile
blob: 46cc431edd31a9fb6a94c8ff61474d1055e16548 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.include <src.opts.mk>

PACKAGE= runtime
PROG=	sort
SRCS=	bwstring.c coll.c file.c mem.c radixsort.c sort.c vsort.c

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

CLEANFILES+= sort.1

.if ${MK_SORT_THREADS} != "no"
CFLAGS+= -DSORT_THREADS
LIBADD=	pthread md
MAN_SUB+= -e 's|%%THREADS%%||g'
.else
LIBADD=	md
MAN_SUB+= -e 's|%%THREADS%%|\.\\"|g'
.endif

HAS_TESTS=
SUBDIR.${MK_TESTS}+= tests

.include <bsd.prog.mk>