aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: a31793043e050025e784a6f607be95c5a7e502bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
PREFIX=/usr
UDEVLIBDIR=/lib/udev
CFLAGS+=-O2 -Wall -g

all: make-bcache probe-bcache bcache-super-show

install: make-bcache probe-bcache bcache-super-show
	install -m0755 make-bcache bcache-super-show	$(DESTDIR)${PREFIX}/sbin/
	install -m0755 probe-bcache bcache-register		$(DESTDIR)$(UDEVLIBDIR)/
	install -m0644 69-bcache.rules	$(DESTDIR)$(UDEVLIBDIR)/rules.d/
	-install -T -m0755 initramfs/hook	$(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-super-show bcache-test *.o

bcache-test: LDLIBS += `pkg-config --libs openssl`
make-bcache: LDLIBS += `pkg-config --libs uuid blkid`
make-bcache: CFLAGS += `pkg-config --cflags uuid blkid`
make-bcache: bcache.o
probe-bcache: LDLIBS += `pkg-config --libs uuid blkid`
probe-bcache: CFLAGS += `pkg-config --cflags uuid blkid`
bcache-super-show: LDLIBS += `pkg-config --libs uuid`
bcache-super-show: CFLAGS += -std=gnu99
bcache-super-show: bcache.o