freebsd-dev/usr.bin/etdump/Makefile
Benno Rice 158d2fcd75 Add the etdump utility for dumping El Torito boot catalog information.
This can be used to check existing images but will be used in the future to
find EFI ESP images placed in El Torito catalogs so they can be used for
hybrid boot purposes.

Reviewed by:	imp (code), sbruno (man page), bcr (man page)
Sponsored by:	iXsystems, Inc.
Differential Revision:	https://reviews.freebsd.org/D14952
2018-04-03 21:08:10 +00:00

15 lines
263 B
Makefile

# $FreeBSD$
PROG= etdump
MAKEFS_SRC= ${SRCTOP}/usr.sbin/makefs
CFLAGS+= -I${SRCTOP}/sys/fs/cd9660 -I${MAKEFS_SRC} \
-I${MAKEFS_SRC}/cd9660
.PATH: ${MAKEFS_SRC}/cd9660
SRCS= etdump.c output_shell.c output_text.c cd9660_conversion.c
.include <bsd.prog.mk>