freebsd-dev/gnu/usr.bin/texinfo/install-info/Makefile
Jordan K. Hubbard 1130b656e5 Make the long-awaited change from $Id$ to $FreeBSD$
This will make a number of things easier in the future, as well as (finally!)
avoiding the Id-smashing problem which has plagued developers for so long.

Boy, I'm glad we're not using sup anymore.  This update would have been
insane otherwise.
1997-01-14 07:20:47 +00:00

28 lines
792 B
Makefile

#
# $FreeBSD$
#
TEXIDIR= ${.CURDIR}/../../../../contrib/texinfo
INSTALLINFODIR= ${TEXIDIR}/util
TXIDIR= ${TEXIDIR}/libtxi
LIBTXI= ${.CURDIR}/../libtxi/libtxi.a
BINDIR= /usr/bin
PROG= install-info
NOMAN=yes
SRCS+= install-info.c
CFLAGS+= -g
CFLAGS+= -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1 -DHAVE_TERMIOS_H=1 -DHAVE_STRINGS_H=1 -DHAVE_STRING_H=1
CFLAGS+= -DHAVE_VARARGS_H=1 -DHAVE_SYS_TIME_H=1 -DHAVE_SYS_FCNTL_H=1 -DHAVE_SYS_FILE_H=1 -DHAVE_ALLOCA=1
CFLAGS+= -DHAVE_SETVBUF=1 -DHAVE_GETCWD=1 -DHAVE_MEMSET=1 -DHAVE_BZERO=1 -DHAVE_STRCHR=1
CFLAGS+= -DHAVE_STRCASECMP=1 -DHAVE_VFPRINTF=1 -DHAVE_VSPRINTF=1 -DHAVE_STRERROR=1 -DHAVE_SIGPROCMASK=1
CFLAGS+= -DHAVE_SIGSETMASK=1 -I../libtxi -I$(TXIDIR)
LDADD+= -L../libtxi -ltxi
DPADD+= ${LIBTXI}
.PATH: $(INSTALLINFODIR)
.include <bsd.prog.mk>