Makefile revision 106852
1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD: head/usr.bin/xinstall/Makefile 106852 2002-11-13 13:49:29Z ru $
3
4PROG=		xinstall
5PROGNAME=	install
6SRCS=		xinstall.c
7MAN=		install.1
8
9.if defined(BOOTSTRAPPING) && \
10    ( ${BOOTSTRAPPING} < 400021 || \
11    ( ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500007 ))
12.PATH: ${.CURDIR}/../../lib/libc/gen
13SRCS+=		strtofflags.c
14.endif
15
16.include <bsd.prog.mk>
17