mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-21 11:13:30 +00:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
38 lines
499 B
Makefile
38 lines
499 B
Makefile
.include <src.opts.mk>
|
|
|
|
PROG= mkimg
|
|
SRCS+= format.c image.c mkimg.c scheme.c uuid.c
|
|
MAN= mkimg.1
|
|
|
|
MKIMG_VERSION=20161016
|
|
mkimg.o: Makefile
|
|
|
|
CFLAGS+=-DMKIMG_VERSION=${MKIMG_VERSION}
|
|
CFLAGS+=-DSPARSE_WRITE
|
|
CFLAGS+=-I${SRCTOP}/sys/sys/disk
|
|
|
|
# List of formats to support
|
|
SRCS+= \
|
|
qcow.c \
|
|
raw.c \
|
|
vhd.c \
|
|
vhdx.c \
|
|
vmdk.c
|
|
|
|
# List of schemes to support
|
|
SRCS+= \
|
|
apm.c \
|
|
bsd.c \
|
|
ebr.c \
|
|
gpt.c \
|
|
mbr.c
|
|
|
|
BINDIR?=/usr/bin
|
|
|
|
LIBADD= util
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.prog.mk>
|