fe61c11618
Makefile: 1.7 add.c: 1.12, 1.23 create.c: 1.11 destroy.c: 1.6 gpt.8: 1.14, 1.15 gpt.c: 1.11, 1.12, 1.13 gpt.h: 1.8, 1.9, 1.10 label.c: 1.1 map.c: 1.6 map.h: 1.6 migrate.c: 1.14, 1.15, 1.16 recover.c: 1.8 remove.c: 1.5, 1.6, 1.7, 1.8 show.c: 1.12, 1.13 o New -l and -u options to the show command, o New label command to support GPT labels, o The remove command doesn't print the total partitions removed, as it prints each partition it removes by name already, o Added ellipsis to most usage messages. PR: ia64/83124 Approved by: re (scottl)
10 lines
158 B
Makefile
10 lines
158 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= gpt
|
|
SRCS= add.c create.c destroy.c gpt.c label.c map.c migrate.c recover.c \
|
|
remove.c show.c
|
|
WARNS?= 4
|
|
MAN= gpt.8
|
|
|
|
.include <bsd.prog.mk>
|