xref: /freebsd/usr.bin/xinstall/Makefile (revision 4b2eaea43fec8e8792be611dea204071a10b655a)
1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD$
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