aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-06-25 13:08:28 -0300
committerEuAndreh <eu@euandre.org>2021-06-25 13:08:30 -0300
commitd6612c0f6e310d661a9fd9a4fe2bcec6711ba7ea (patch)
tree3180264f7ac0b2208e233bbc6f64dffb10986349 /Makefile
parentRelease v0.2.2 (diff)
downloadgit-permalink-d6612c0f6e310d661a9fd9a4fe2bcec6711ba7ea.tar.gz
git-permalink-d6612c0f6e310d661a9fd9a4fe2bcec6711ba7ea.tar.xz
mv src/git-permalink.sh.in src/git-permalin.in
Mostly to avoid the conflict of the ".sh" built-in rule in the Makefile.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 327f89d..9541c37 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,6 @@ NAME = git-permalink
MAILING_LIST = public-inbox
TRANSLATIONS = pt fr eo
-.SUFFIXES:
.SUFFIXES: .in
.in:
@@ -23,7 +22,7 @@ manpages.in = $(manpages.en.in) \
manpages = $(manpages.in:.in=)
-all: src/git-permalink.sh $(manpages)
+all: src/git-permalink $(manpages)
check: all
sh tests/cli-opts.sh
@@ -39,7 +38,7 @@ dev-check: check public
install: all
mkdir -p $(DESTDIR)$(PREFIX)/bin
- cp src/git-permalink.sh $(DESTDIR)$(PREFIX)/bin/$(NAME)
+ cp src/git-permalink $(DESTDIR)$(PREFIX)/bin/$(NAME)
chmod +x $(DESTDIR)$(PREFIX)/bin/$(NAME)
sh aux/workflow/manpages.sh -ip $(DESTDIR)$(MANPREFIX) $(manpages)
@@ -48,7 +47,7 @@ uninstall:
sh aux/workflow/manpages.sh -up $(DESTDIR)$(MANPREFIX) $(manpages)
clean:
- rm -rf public/ src/git-permalink.sh $(manpages)
+ rm -rf public/ src/git-permalink $(manpages)
dist:
sh aux/workflow/dist.sh $(DATE) $(VERSION) $(NAME) $(NAME) $(MAILING_LIST)