mirror of
https://github.com/ivabus/speakersafetyd
synced 2024-11-10 02:15:16 +03:00
build: split install and install-data targets
This allows only installing the data files in case the build is done separately (like for example when using debcargo/dh-cargo which uses rustc --target option and thus the speakersafetyd ends up in a different path which includes the target). While at it also mark all targets as PHONY, since none of them are backed by an actual file with the same name. Signed-off-by: Andreas Henriksson <andreas@fatal.se>
This commit is contained in:
parent
0e5fa0921f
commit
f069160e33
6
Makefile
6
Makefile
|
@ -10,9 +10,11 @@ VARDIR ?= /var/
|
||||||
all:
|
all:
|
||||||
cargo build --release
|
cargo build --release
|
||||||
|
|
||||||
install:
|
install: install-data
|
||||||
install -dDm0755 $(DESTDIR)/$(BINDIR)
|
install -dDm0755 $(DESTDIR)/$(BINDIR)
|
||||||
install -pm0755 target/release/speakersafetyd $(DESTDIR)/$(BINDIR)/speakersafetyd
|
install -pm0755 target/release/speakersafetyd $(DESTDIR)/$(BINDIR)/speakersafetyd
|
||||||
|
|
||||||
|
install-data:
|
||||||
install -dDm0755 $(DESTDIR)/$(UNITDIR)
|
install -dDm0755 $(DESTDIR)/$(UNITDIR)
|
||||||
install -pm0644 speakersafetyd.service $(DESTDIR)/$(UNITDIR)/speakersafetyd.service
|
install -pm0644 speakersafetyd.service $(DESTDIR)/$(UNITDIR)/speakersafetyd.service
|
||||||
install -dDm0755 $(DESTDIR)/$(UDEVDIR)
|
install -dDm0755 $(DESTDIR)/$(UDEVDIR)
|
||||||
|
@ -24,3 +26,5 @@ install:
|
||||||
uninstall:
|
uninstall:
|
||||||
rm -f $(DESTDIR)/$(BINDIR)/speakersafetyd $(DESTDIR)/$(UNITDIR)/speakersafetyd.service $(DESTDIR)/$(UDEVDIR)/95-speakersafetyd.rules
|
rm -f $(DESTDIR)/$(BINDIR)/speakersafetyd $(DESTDIR)/$(UNITDIR)/speakersafetyd.service $(DESTDIR)/$(UDEVDIR)/95-speakersafetyd.rules
|
||||||
rm -rf $(DESTDIR)/$(SHAREDIR)/speakersafetyd
|
rm -rf $(DESTDIR)/$(SHAREDIR)/speakersafetyd
|
||||||
|
|
||||||
|
.PHONY: all install install-data uninstall
|
||||||
|
|
Loading…
Reference in a new issue