5f40118235
I need these tools in order to install the crossbuilt FreeBSD and create a disk image. Linux does not have a st_flags in struct stat so unfortunately I need a bunch of ugly ifdefs. The resulting binaries allow me to sucessfully install a MIPS64 world and create a disk-image that boots. Reviewed By: brooks, bdrewery, emaste Approved By: jhb (mentor) Differential Revision: https://reviews.freebsd.org/D13307
22 lines
367 B
Makefile
22 lines
367 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
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
|
|
CFLAGS+= -DHAVE_STRUCT_STAT_ST_FLAGS=1
|
|
|
|
LIBADD= md
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.prog.mk>
|