freebsd-src/usr.bin/mkimg/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
500 B
Makefile
Raw Normal View History

2014-09-20 21:02:54 +00:00
.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
2014-09-20 21:02:54 +00:00
.include <bsd.prog.mk>