bcachefs-tools/Makefile

22 lines
649 B
Makefile
Raw Normal View History

2010-05-15 19:26:35 +04:00
2010-12-16 12:22:45 +03:00
PREFIX=/usr
CFLAGS+=-O2 -Wall -g
2010-05-15 19:26:35 +04:00
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
install -m0755 make-bcache $(DESTDIR)${PREFIX}/sbin/
install -m0755 probe-bcache $(DESTDIR)/sbin/
install -m0644 61-bcache.rules $(DESTDIR)/lib/udev/rules.d/
2012-04-12 02:33:40 +04:00
install -m0755 initramfs $(DESTDIR)/etc/initramfs-tools/scripts/local-premount/bcache-probe
install -m0644 *.8 $(DESTDIR)${PREFIX}/share/man/man8
# install -m0755 bcache-test $(DESTDIR)${PREFIX}/sbin/
2010-07-30 10:05:51 +04:00
2010-12-16 12:22:45 +03:00
clean:
$(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