]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/dhclient/Makefile.inc
This commit was generated by cvs2svn to compensate for changes in r95154,
[FreeBSD/FreeBSD.git] / sbin / dhclient / Makefile.inc
1 # $FreeBSD$
2
3 MAINTAINER=     murray
4
5 WARNS=          0
6 CFLAGS+= -I${DIST_DIR}/includes
7
8 CLIENTBINDIR=   /sbin
9 RUNDIR=         /var/run
10 ETCDIR=         /etc
11 DBDIR=          /var/db
12
13 MANFILTER= sed  -e 's|DBDIR|${DBDIR}|g' \
14                 -e 's|ETCDIR|${ETCDIR}|g' \
15                 -e 's|CLIENTBINDIR|${CLIENTBINDIR}|g' \
16                 -e 's|RUNDIR|${RUNDIR}|g'
17
18 .if exists(${.OBJDIR}/../common)
19 LIBDHCP=        ${.OBJDIR}/../common/libdhcp.a
20 .else
21 LIBDHCP=        ${.CURDIR}/../common/libdhcp.a
22 .endif
23
24 .if exists(${.OBJDIR}/../minires)
25 LIBRES=         ${.OBJDIR}/../minires/libres.a
26 .else
27 LIBRES=         ${.CURDIR}/../minires/libres.a
28 .endif
29
30 .if exists(${.OBJDIR}/../omapip)
31 LIBOMAPI=       ${.OBJDIR}/../omapip/libomapi.a
32 .else
33 LIBOMAPI=       ${.CURDIR}/../omapip/libomapi.a
34 .endif
35
36 .if exists(${.OBJDIR}/../dst)
37 LIBDST=         ${.OBJDIR}/../dst/libdst.a
38 .else
39 LIBDST=         ${.CURDIR}/../dst/libdst.a
40 .endif
41
42 .include "../Makefile.inc"