bcachefs-tools/Makefile
2011-11-20 21:17:43 -08:00

22 lines
642 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 make-bcache.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