mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-23 00:00:02 +03:00
Makefile to follow GNU Make best practice
This commit is contained in:
parent
d1bc71ca43
commit
e77d059ee1
16
Makefile
16
Makefile
@ -1,19 +1,19 @@
|
|||||||
|
|
||||||
PREFIX=/usr
|
PREFIX=/usr
|
||||||
CFLAGS=-O2 -Wall -g
|
CFLAGS+=-O2 -Wall -g
|
||||||
|
|
||||||
all: make-bcache probe-bcache
|
all: make-bcache probe-bcache
|
||||||
|
|
||||||
install: make-bcache probe-bcache
|
install: make-bcache probe-bcache
|
||||||
install -m0755 make-bcache ${PREFIX}/sbin/
|
install -m0755 make-bcache $(DESTDIR)${PREFIX}/sbin/
|
||||||
install -m0755 probe-bcache /sbin/
|
install -m0755 probe-bcache $(DESTDIR)/sbin/
|
||||||
install -m0644 61-bcache.rules /lib/udev/rules.d/
|
install -m0644 61-bcache.rules $(DESTDIR)/lib/udev/rules.d/
|
||||||
install -m0755 initramfs /usr/share/initramfs-tools/hooks/bcache
|
install -m0755 initramfs $(DESTDIR)/usr/share/initramfs-tools/hooks/bcache
|
||||||
install -m0644 make-bcache.8 ${PREFIX}/share/man/man8
|
install -m0644 make-bcache.8 $(DESTDIR)${PREFIX}/share/man/man8
|
||||||
# install -m0755 bcache-test ${PREFIX}/sbin/
|
# install -m0755 bcache-test $(DESTDIR)${PREFIX}/sbin/
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f make-bcache probe-bcache bcache-test *.o
|
$(RM) -f make-bcache probe-bcache bcache-test *.o
|
||||||
|
|
||||||
bcache-test: LDLIBS += -lm -lssl -lcrypto
|
bcache-test: LDLIBS += -lm -lssl -lcrypto
|
||||||
make-bcache: LDLIBS += -luuid
|
make-bcache: LDLIBS += -luuid
|
||||||
|
Loading…
Reference in New Issue
Block a user