mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-26 08:02:21 +00:00
f243fcd1b2
With the commit 002d021c
(committed October 2011)
btrfsctl, btrfs-vol, btrfs-show were declared deprecated.
The last patches related to these commands are dated December 2010.
These tools are replaced by the "btrfs" tool in all the
functionality.
This commit removes all the related code.
Signed-off-by: Goffredo Baroncelli <kreijack@inwind.it>
Signed-off-by: David Sterba <dsterba@suse.cz>
30 lines
561 B
Makefile
30 lines
561 B
Makefile
GZIPCMD=gzip
|
|
INSTALL= install
|
|
|
|
prefix ?= /usr/local
|
|
bindir = $(prefix)/bin
|
|
mandir = $(prefix)/man
|
|
man8dir = $(mandir)/man8
|
|
|
|
# clear out all suffixes
|
|
.SUFFIXES:
|
|
# list only those we use
|
|
.SUFFIXES: .in .gz
|
|
|
|
MANPAGES = mkfs.btrfs.8.gz btrfsck.8.gz btrfs-image.8.gz btrfs.8.gz
|
|
INFILES = ${MANPAGES:.in=.gz}
|
|
|
|
all: $(MANPAGES)
|
|
|
|
.in.gz :
|
|
@echo " [MAN] $@"
|
|
$(Q)$(GZIPCMD) -n -c $< > $@
|
|
|
|
clean :
|
|
@echo "Cleaning manpages"
|
|
$(Q)rm -f $(MANPAGES)
|
|
|
|
install: $(MANPAGES)
|
|
$(INSTALL) -m755 -d $(DESTDIR)$(man8dir)
|
|
$(INSTALL) -m 644 $(MANPAGES) $(DESTDIR)$(man8dir)
|