Skip to content

Commit d1ebd05

Browse files
committed
Re-indent Makefile to 1 tab
1 parent 5d755be commit d1ebd05

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@ PREFIX ?= /usr/local
66
all: man
77

88
mgitstatus.1: mgitstatus.1.md
9-
pandoc ./$< -s -t man > $@
9+
pandoc ./$< -s -t man > $@
1010

1111
.PHONY: man
1212
man: mgitstatus.1
1313

1414
.PHONY: test
1515
test:
16-
# SC1117 Backslash is literal in...
17-
# SC2059 Don't use variables in the printf format string. But we need to or colors won't work
18-
shellcheck -e SC1117,SC2059 mgitstatus
16+
# SC1117 Backslash is literal in...
17+
# SC2059 Don't use variables in the printf format string. But we need to or colors won't work
18+
shellcheck -e SC1117,SC2059 mgitstatus
1919

2020
.PHONY: install
2121
install:
22-
install -d $(DESTDIR)$(PREFIX)/bin
23-
install -d $(DESTDIR)$(PREFIX)/man/man1
24-
install mgitstatus -m 755 $(DESTDIR)$(PREFIX)/bin/
25-
install mgitstatus.1 $(DESTDIR)$(PREFIX)/man/man1/
22+
install -d $(DESTDIR)$(PREFIX)/bin
23+
install -d $(DESTDIR)$(PREFIX)/man/man1
24+
install mgitstatus -m 755 $(DESTDIR)$(PREFIX)/bin/
25+
install mgitstatus.1 $(DESTDIR)$(PREFIX)/man/man1/
2626

2727
.PHONY: clean
2828
clean:

0 commit comments

Comments
 (0)