sys/vfs/hammer2: Remove obsolete comments on hidden inode
[dragonfly.git] / usr.bin / xinstall / Makefile
blobc8480f77795fb0a0037ef5ddc1eaa9e56df86ddf
1 # @(#)Makefile 8.1 (Berkeley) 6/6/93
2 # $FreeBSD: src/usr.bin/xinstall/Makefile,v 1.11.2.4 2001/09/24 15:44:05 ru Exp $
4 PROG= xinstall
5 PROGNAME= install
6 SRCS= xinstall.c getid.c
7 MAN= install.1
9 .PATH: ${.CURDIR}/../../usr.sbin/mtree
10 CFLAGS+= -DHAVE_NETDB_H -I${.CURDIR}/../../usr.sbin/mtree
12 # pwcache(3) and vis(3) upgrades came in about here
14 .if ${WORLD_VERSION} < 500302
15 .if defined(BOOTSTRAPPING)
16 CFLAGS+=-I${.CURDIR}/../../lib/libc/include
17 CFLAGS+=-include ${.CURDIR}/../../include/grp.h
18 CFLAGS+=-include ${.CURDIR}/../../include/pwd.h
20 .PATH: ${.CURDIR}/../../lib/libc/gen
21 SRCS+= pwcache.c
22 CFLAGS+=-I${.CURDIR}/../../lib/libc/gen
23 CFLAGS+=-DEMBED_LIB_SRC
24 .endif
25 .endif
27 .include <bsd.prog.mk>