blob: aff1aafe0155c712f08ae25f5dc8906dd3ce9d76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# $NetBSD: Makefile.inc,v 1.2 2001/01/09 08:52:58 enami Exp $
.include <bsd.own.mk>
WARNS?= 0
IDIST= ${.CURDIR}/../../../dist/cvs
CPPFLAGS+= -DHAVE_CONFIG_H -I${.CURDIR}/../include -I${IDIST}/lib \
-I${IDIST}/diff -I${IDIST}/src
DOBJDIR!=cd $(.CURDIR)/../libdiff && ${PRINTOBJDIR}
COBJDIR!=cd $(.CURDIR)/../libcvs && ${PRINTOBJDIR}
LIBDIFF= ${DOBJDIR}/libdiff.a
LIBCVS= ${COBJDIR}/libcvs.a
# Directories to install into.
#PFIX_LIBEXECDIR=/usr/libexec/postfix
#PFIX_ETCDIR= /etc/postfix
#PFIX_EXAMPLEDIR=/usr/share/examples/postfix
#PFIX_SBINDIR= /usr/sbin
# postfix check wants a lot of files to be owned by root
#BINOWN= root
.if exists(${.CURDIR}/../../Makefile.inc)
.include "${.CURDIR}/../../Makefile.inc"
.endif
|