mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-08 13:28:05 +00:00
d0b2dbfa0e
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
27 lines
437 B
Makefile
27 lines
437 B
Makefile
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE= runtime
|
|
PROG= sort
|
|
SRCS= bwstring.c coll.c file.c mem.c radixsort.c sort.c vsort.c
|
|
CSTD= c11
|
|
|
|
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>
|