kernel - Validate that previous pte was cleaned.
[dragonfly.git] / usr.bin / sort / Makefile
blob4fb0c2ccd22a1754cf470860d9859115f0e9d287
1 # $FreeBSD: head/usr.bin/sort/Makefile 275042 2014-11-25 14:29:10Z bapt $
3 PROG= sort
4 SRCS= bwstring.c \
5 coll.c \
6 file.c \
7 mem.c \
8 radixsort.c \
9 sort.c \
10 vsort.c
12 DPADD= ${LIBMD}
13 LDADD= -lmd
15 DPADD+= ${LIBPTHREAD}
16 LDADD+= -lpthread
17 CFLAGS+= -DSORT_THREADS
18 CFLAGS+= -DWITHOUT_NLS
19 .if defined(BOOTSTRAPPING)
20 CFLAGS+= -DBOOTSTRAPPING
21 .endif
24 .include <bsd.prog.mk>