opnsense-src/gnu/usr.bin/sort/Makefile

36 lines
591 B
Makefile
Raw Normal View History

2002-04-08 08:12:07 -04:00
# $FreeBSD$
2002-06-08 06:34:12 -04:00
SORTDIR= ${.CURDIR}/../../../contrib/gnu-sort
.PATH: ${SORTDIR}/lib ${SORTDIR}/src ${SORTDIR}/man
2002-04-08 08:12:07 -04:00
PROG= sort
2002-06-08 06:34:12 -04:00
SRCS= sort.c \
__fpending.c \
2002-06-08 06:34:12 -04:00
argmatch.c \
closeout.c \
2002-06-08 06:34:12 -04:00
dup-safer.c \
error.c \
exitfail.c \
2002-06-08 06:34:12 -04:00
fopen-safer.c \
hard-locale.c \
human.c \
long-options.c \
memcoll.c \
physmem.c \
posixver.c \
quote.c \
quotearg.c \
strnlen.c \
umaxtostr.c \
2002-06-08 06:34:12 -04:00
version-etc.c \
2004-08-12 02:02:28 -04:00
xalloc-die.c \
2002-06-08 06:34:12 -04:00
xmalloc.c \
xmemcoll.c \
xstrtoul.c \
xstrtoumax.c
2002-04-08 08:12:07 -04:00
2007-10-12 14:15:40 -04:00
CFLAGS+=-DHAVE_CONFIG_H -DHAVE_LANGINFO_H=1 -DHAVE_NL_LANGINFO=1 \
-I${.CURDIR} -I${SORTDIR}/lib
2002-04-08 08:12:07 -04:00
.include <bsd.prog.mk>