From f45d1c80273bed085d9e31d7bb7c075c1b3f6384 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Sat, 24 Oct 2020 08:53:39 +0200 Subject: [PATCH] refac: Format Makefile --- Makefile | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Makefile b/Makefile index 089208e..2950065 100644 --- a/Makefile +++ b/Makefile @@ -1,22 +1,22 @@ -# Copyright 2014 Gustav Eek. This program is distributed under the +# Copyright 2014--2020 Gustav Eek. This program is distributed under the # terms of the GNU General Public License SHELL = /bin/bash INSTALL = $(HOME)/bin -scripts = \ -msmtp-notify \ -repo-encrypt \ -exiv2-common-edits \ -confluence-tk \ -json2yaml \ -yaml2json \ -ip-check \ -folkets \ -unoconv-display \ +SCRIPTS = \ + confluence-tk \ + exiv2-common-edits \ + folkets \ + ip-check \ + json2yaml \ + msmtp-notify \ + repo-encrypt \ + unoconv-display \ + yaml2json \ -bash-completion = \ -repo-encrypt \ +BASH_COMPLETION = \ + repo-encrypt \ dir := $(INSTALL) dir-completion := $(dir)/bash_completion.d @@ -24,8 +24,8 @@ dir-completion := $(dir)/bash_completion.d default: help install: $(dir) $(dir-completion) \ -$(foreach f, $(scripts), $(dir)/$(f)) \ -$(foreach f, $(bash-completion), $(dir-completion)/$(f)) \ +$(foreach f, $(SCRIPTS), $(dir)/$(f)) \ +$(foreach f, $(BASH_COMPLETION), $(dir-completion)/$(f)) \ $(dir)/%: % cp -f $< $@ -- 2.39.2