7f983a3b38
that need to be supported. Each scheme provides data and callbacks for handling the scheme-specifics. To this end, put each scheme in its own source file.
25 lines
251 B
Makefile
25 lines
251 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= mkimg
|
|
SRCS= mkimg.c scheme.c
|
|
MAN= mkimg.8
|
|
|
|
# List of schemes to support
|
|
SRCS+= \
|
|
apm.c \
|
|
bsd.c \
|
|
ebr.c \
|
|
gpt.c \
|
|
mbr.c \
|
|
pc98.c \
|
|
vtoc8.c
|
|
|
|
BINDIR?=/usr/sbin
|
|
|
|
DPADD= ${LIBUTIL}
|
|
LDADD= -lutil
|
|
|
|
WARNS?= 6
|
|
|
|
.include <bsd.prog.mk>
|