Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / sbin / dhclient / Makefile.inc
1 # $FreeBSD: src/sbin/dhclient/Makefile.inc,v 1.2.2.1 2002/04/11 10:21:20 murray Exp $
2 # $DragonFly: src/sbin/dhclient/Attic/Makefile.inc,v 1.2 2003/06/17 04:27:32 dillon Exp $
3
4 MAINTAINER=     murray
5
6 WARNS=          0
7 CFLAGS+= -I${DIST_DIR}/includes
8
9 CLIENTBINDIR=   /sbin
10 RUNDIR=         /var/run
11 ETCDIR=         /etc
12 DBDIR=          /var/db
13
14 MANFILTER= perl -pe 's\#DBDIR\#${DBDIR}\#g;s\#ETCDIR\#${ETCDIR}\#g;s\#CLIENTBINDIR\#${CLIENTBINDIR}\#g;s\#RUNDIR\#${RUNDIR}\#g;'
15
16 .if exists(${.OBJDIR}/../common)
17 LIBDHCP=        ${.OBJDIR}/../common/libdhcp.a
18 .else
19 LIBDHCP=        ${.CURDIR}/../common/libdhcp.a
20 .endif
21
22 .if exists(${.OBJDIR}/../minires)
23 LIBRES=         ${.OBJDIR}/../minires/libres.a
24 .else
25 LIBRES=         ${.CURDIR}/../minires/libres.a
26 .endif
27
28 .if exists(${.OBJDIR}/../omapip)
29 LIBOMAPI=       ${.OBJDIR}/../omapip/libomapi.a
30 .else
31 LIBOMAPI=       ${.CURDIR}/../omapip/libomapi.a
32 .endif
33
34 .if exists(${.OBJDIR}/../dst)
35 LIBDST=         ${.OBJDIR}/../dst/libdst.a
36 .else
37 LIBDST=         ${.CURDIR}/../dst/libdst.a
38 .endif
39
40 .include "../Makefile.inc"