6686e95fef
partitions and removes any that matches the pre-conditions. The options are the same for the add command and are used to select the partitions to remove. Currently the remove command without any options deletes all GPT partitions. This is rather harmful and will need anti-footshooting measures.
10 lines
150 B
Makefile
10 lines
150 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= gpt
|
|
SRCS= add.c create.c destroy.c gpt.c map.c migrate.c recover.c remove.c \
|
|
show.c
|
|
WARNS?= 4
|
|
MAN= gpt.8
|
|
|
|
.include <bsd.prog.mk>
|