freebsd-src/usr.bin/xinstall/Makefile
Warner Losh bdcbfde31e usr.bin: Remove ancient SCCS tags.
Remove ancient SCCS tags from the tree, automated scripting, with two
minor fixup to keep things compiling. All the common forms in the tree
were removed with a perl script.

Sponsored by:		Netflix
2023-11-26 22:23:30 -07:00

27 lines
443 B
Makefile

.include <src.opts.mk>
PACKAGE= runtime
PROG= xinstall
PROGNAME= install
SRCS= xinstall.c getid.c
MAN= install.1
.PATH: ${SRCTOP}/contrib/mtree
CFLAGS+= -I${SRCTOP}/contrib/mtree
CFLAGS+= -I${SRCTOP}/lib/libnetbsd
LIBADD= md
CFLAGS+= -DWITH_MD5 -DWITH_RIPEMD160
.ifdef BOOTSTRAPPING
# For the bootstrap we disable copy_file_range()
CFLAGS+= -DBOOTSTRAP_XINSTALL
.endif
HAS_TESTS=
SUBDIR.${MK_TESTS}+= tests
.include <bsd.prog.mk>