mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-22 00:00:03 +03:00
Hi Kent, please find a little patch (attached) to introduce probe-bcache.8 man page to bcache-tools. Thank you. Cheers, Dmitry. From 0ff7680042622e356516739936095cb4eab02de6 Mon Sep 17 00:00:00 2001 From: Dmitry Smirnov <onlyjob@member.fsf.org> Date: Thu, 16 Feb 2012 13:23:00 +1100 Subject: [PATCH] added probe-bcache.8 man page
22 lines
632 B
Makefile
22 lines
632 B
Makefile
|
|
PREFIX=/usr
|
|
CFLAGS+=-O2 -Wall -g
|
|
|
|
all: make-bcache probe-bcache
|
|
|
|
install: make-bcache probe-bcache
|
|
install -m0755 make-bcache $(DESTDIR)${PREFIX}/sbin/
|
|
install -m0755 probe-bcache $(DESTDIR)/sbin/
|
|
install -m0644 61-bcache.rules $(DESTDIR)/lib/udev/rules.d/
|
|
install -m0755 initramfs $(DESTDIR)/usr/share/initramfs-tools/hooks/bcache
|
|
install -m0644 *.8 $(DESTDIR)${PREFIX}/share/man/man8
|
|
# install -m0755 bcache-test $(DESTDIR)${PREFIX}/sbin/
|
|
|
|
clean:
|
|
$(RM) -f make-bcache probe-bcache bcache-test *.o
|
|
|
|
bcache-test: LDLIBS += -lm -lssl -lcrypto
|
|
make-bcache: LDLIBS += -luuid
|
|
make-bcache: bcache.o
|
|
probe-bcache: LDLIBS += -luuid
|