bcachefs-tools/Makefile

22 lines
578 B
Makefile
Raw Normal View History

2010-05-15 19:26:35 +04:00
2010-12-16 12:22:45 +03:00
PREFIX=/usr
2010-05-15 19:26:35 +04:00
CFLAGS=-O2 -Wall -g
2010-10-08 18:04:49 +04:00
all: make-bcache probe-bcache
2010-05-15 19:26:35 +04:00
2010-10-08 18:04:49 +04:00
install: make-bcache probe-bcache
2010-07-30 10:05:51 +04:00
install -m0755 make-bcache ${PREFIX}/sbin/
2010-12-16 12:22:45 +03:00
install -m0755 probe-bcache /sbin/
2010-10-08 18:04:49 +04:00
install -m0644 61-bcache.rules /lib/udev/rules.d/
install -m0755 initramfs /usr/share/initramfs-tools/hooks/bcache
2010-12-16 12:22:45 +03:00
install -m0644 make-bcache.8 ${PREFIX}/share/man/man8
2010-10-08 18:04:49 +04:00
# install -m0755 bcache-test ${PREFIX}/sbin/
2010-07-30 10:05:51 +04:00
2010-12-16 12:22:45 +03:00
clean:
2011-02-13 18:01:10 +03:00
rm -f make-bcache probe-bcache bcache-test *.o
2010-07-30 10:05:51 +04:00
2011-02-13 18:01:10 +03:00
bcache-test: LDLIBS += -lm -lssl -lcrypto
make-bcache: LDLIBS += -luuid
make-bcache: bcache.o
2011-02-13 18:01:10 +03:00
probe-bcache: LDLIBS += -luuid