sys/conf/files: Move vmx a bit up.
[dragonfly.git] / usr.bin / xinstall / Makefile
blob47481e7b768650dfffb663b0a89c91d7b1cf8409
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+= -I${.CURDIR}/../../usr.sbin/mtree
12 .if defined(BOOTSTRAPPING)
13 .if ${WORLD_VERSION} < 500302 # pwcache(3) upgrades came in about here
14 .PATH: ${.CURDIR}/../../lib/libc/gen
15 SRCS+= pwcache.c
16 CFLAGS+=-I${.CURDIR}/../../lib/libc/include
17 CFLAGS+=-include ${.CURDIR}/../../include/grp.h
18 CFLAGS+=-include ${.CURDIR}/../../include/pwd.h
19 .endif
20 .endif
22 .include <bsd.prog.mk>