freebsd-skq/usr.bin/sort/Makefile
Dag-Erling Smørgrav aa5619ca9e Build a working version of sort(1) from contrib. Use netbsd.h as a hack
to avoid bringing the sources off the vendor branch just to #ifdef out
the RCS and SCCS IDs.
2002-04-06 13:59:43 +00:00

13 lines
234 B
Makefile

# $FreeBSD$
SRCDIR= ${.CURDIR}/../../contrib/sort
PROG= sort
SRCS= append.c fields.c files.c fsort.c init.c msort.c sort.c tmp.c
MAN= sort.1
CFLAGS+=-I${SRCDIR} -include ${.CURDIR}/netbsd.h
.include <bsd.prog.mk>
.PATH: ${SRCDIR}