freebsd-dev/usr.sbin/named/Makefile.inc
Bruce Evans 680b396b51 Removed unused `-I.'s from CFLAGS.
"." means the object directory, so it is just confusing to use it
when nothing is included from the object directory unless the object
directory is also the source directory.  It is confusing for "."
not to mean the source directory anyway, so used `-I.'s should be
replaced by `-I${.OBJDIR}'.
1996-09-04 22:25:35 +00:00

28 lines
527 B
Makefile

# From: Id: Makefile.inc,v 8.4 1996/03/03 17:42:43 vixie Exp
# $Id: Makefile.inc,v 1.1 1996/08/29 21:36:53 peter Exp $
.ifndef (Mk.Inc)
Mk.Inc?=defined
BIND_DIR= ${.CURDIR}/../../contrib/bind
VER!= awk -F' *= *' '$$1 == "VER" { print $$2 ; exit }' \
${BIND_DIR}/Makefile
PIDDIR= /var/run
INDOT=
XFER_INDOT= ${INDOT}
PS= ps
DESTSBIN= /usr/sbin
IOT= ABRT
CONFIG?= -DUSE_OPTIONS_H
INCLUDE?= -I${BIND_DIR} -I${BIND_DIR}/include
CFLAGS+= ${INCLUDE} ${CONFIG}
BINGRP= bin
BINOWN= bin
.include "Makefile.maninc"
.endif