2010-05-15 19:26:35 +04:00
|
|
|
|
2010-12-16 12:22:45 +03:00
|
|
|
PREFIX=/usr
|
2013-10-06 13:07:20 +04:00
|
|
|
UDEVLIBDIR=/lib/udev
|
2011-11-19 12:57:46 +04:00
|
|
|
CFLAGS+=-O2 -Wall -g
|
2010-05-15 19:26:35 +04:00
|
|
|
|
2013-03-09 16:22:24 +04:00
|
|
|
all: make-bcache probe-bcache bcache-super-show
|
2010-05-15 19:26:35 +04:00
|
|
|
|
2013-03-09 16:22:24 +04:00
|
|
|
install: make-bcache probe-bcache bcache-super-show
|
|
|
|
install -m0755 make-bcache bcache-super-show $(DESTDIR)${PREFIX}/sbin/
|
2013-10-06 13:07:20 +04:00
|
|
|
install -m0755 probe-bcache bcache-register $(DESTDIR)$(UDEVLIBDIR)/
|
|
|
|
install -m0644 69-bcache.rules $(DESTDIR)$(UDEVLIBDIR)/rules.d/
|
2013-09-22 03:13:36 +04:00
|
|
|
-install -T -m0755 initramfs/hook $(DESTDIR)/usr/share/initramfs-tools/hooks/bcache
|
|
|
|
install -m0644 -- *.8 $(DESTDIR)${PREFIX}/share/man/man8/
|
2011-11-19 12:57:46 +04:00
|
|
|
# install -m0755 bcache-test $(DESTDIR)${PREFIX}/sbin/
|
2010-07-30 10:05:51 +04:00
|
|
|
|
2010-12-16 12:22:45 +03:00
|
|
|
clean:
|
2013-03-09 16:22:24 +04:00
|
|
|
$(RM) -f make-bcache probe-bcache bcache-super-show bcache-test *.o
|
2010-07-30 10:05:51 +04:00
|
|
|
|
2013-08-17 20:56:50 +04:00
|
|
|
bcache-test: LDLIBS += `pkg-config --libs openssl`
|
|
|
|
make-bcache: LDLIBS += `pkg-config --libs uuid blkid`
|
|
|
|
make-bcache: CFLAGS += `pkg-config --cflags uuid blkid`
|
2011-07-26 21:02:15 +04:00
|
|
|
make-bcache: bcache.o
|
2013-10-05 23:16:21 +04:00
|
|
|
probe-bcache: LDLIBS += `pkg-config --libs uuid blkid`
|
|
|
|
probe-bcache: CFLAGS += `pkg-config --cflags uuid blkid`
|
2013-08-17 20:56:50 +04:00
|
|
|
bcache-super-show: LDLIBS += `pkg-config --libs uuid`
|
2013-07-06 01:59:21 +04:00
|
|
|
bcache-super-show: CFLAGS += -std=gnu99
|
2013-03-09 16:22:24 +04:00
|
|
|
bcache-super-show: bcache.o
|