diff options
author | EuAndreh <eu@euandre.org> | 2021-06-25 13:08:28 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-25 13:08:30 -0300 |
commit | d6612c0f6e310d661a9fd9a4fe2bcec6711ba7ea (patch) | |
tree | 3180264f7ac0b2208e233bbc6f64dffb10986349 /Makefile | |
parent | Release v0.2.2 (diff) | |
download | git-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-- | Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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) |