mirror of
https://github.com/opnsense/src.git
synced 2026-03-01 12:51:07 -05:00
27 lines
480 B
Makefile
27 lines
480 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
.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>
|