[Cln] Indent Makefile to respect line limit of 80
This commit is contained in:
parent
47a0ca0ec4
commit
8f3bab75ce
20
Makefile
20
Makefile
|
@ -30,11 +30,21 @@ $(HOME)/rpmbuild/SOURCES/$(NAME)-%.tar.gz: .
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install:
|
install:
|
||||||
install -D --no-target-directory server.conf.sample $(DESTDIR)$(SYSCONFDIR)/$(NAME)/server.conf
|
install -D \
|
||||||
install -D --target-directory=$(DESTDIR)$(SYSCONFDIR)/$(NAME) server.conf.sample
|
--no-target-directory \
|
||||||
install -D --target-directory=$(DESTDIR)$(UNITDIR) systemd/netoik-api-server.service
|
server.conf.sample \
|
||||||
install -D --no-target-directory bin/server $(DESTDIR)$(BINDIR)/$(NAME)-server
|
"$(DESTDIR)$(SYSCONFDIR)/$(NAME)/server.conf"
|
||||||
install --directory $(DESTDIR)$(VARDIR)/$(NAME)/captcha
|
install -D \
|
||||||
|
--target-directory="$(DESTDIR)$(SYSCONFDIR)/$(NAME)" \
|
||||||
|
server.conf.sample
|
||||||
|
install -D \
|
||||||
|
--target-directory="$(DESTDIR)$(UNITDIR)" \
|
||||||
|
systemd/netoik-api-server.service
|
||||||
|
install -D \
|
||||||
|
--no-target-directory \
|
||||||
|
bin/server \
|
||||||
|
"$(DESTDIR)$(BINDIR)/$(NAME)-server"
|
||||||
|
install --directory "$(DESTDIR)$(VARDIR)/$(NAME)/captcha"
|
||||||
|
|
||||||
.PHONY: check_format
|
.PHONY: check_format
|
||||||
check_format:
|
check_format:
|
||||||
|
|
Loading…
Reference in New Issue