Skip to content
Snippets Groups Projects
Commit e7f6c089 authored by Richard Hartmann's avatar Richard Hartmann
Browse files

Merge branch 'master' into debian

parents d037184c f03a6c5d
Branches
Tags
No related merge requests found
PREFIX=/usr PREFIX=/usr
manpages=vcsh.1 self=vcsh
manpages=$(self).1
all=test manpages all=test manpages
all: $(all) all: $(all)
install: all install: all
install -d $(DESTDIR)$(PREFIX)/bin install -d $(DESTDIR)$(PREFIX)/bin
install -m 0755 vcsh $(DESTDIR)$(PREFIX)/bin install -m 0755 $(self) $(DESTDIR)$(PREFIX)/bin
install -d $(DESTDIR)$(PREFIX)/share/man/man1 install -d $(DESTDIR)$(PREFIX)/share/man/man1
install -m 0644 $(manpages) $(DESTDIR)$(PREFIX)/share/man/man1 install -m 0644 $(manpages) $(DESTDIR)$(PREFIX)/share/man/man1
install -d $(DESTDIR)$(PREFIX)/share/doc/vcsh install -d $(DESTDIR)$(PREFIX)/share/doc/$(self)
install -m 0644 README.md $(DESTDIR)$(PREFIX)/share/doc/vcsh install -m 0644 README.md $(DESTDIR)$(PREFIX)/share/doc/$(self)
install -m 0644 doc/hooks $(DESTDIR)$(PREFIX)/share/doc/vcsh install -m 0644 doc/hooks $(DESTDIR)$(PREFIX)/share/doc/$(self)
install -d $(DESTDIR)$(PREFIX)/share/zsh/vendor-completions install -d $(DESTDIR)$(PREFIX)/share/zsh/vendor-completions
install -m 0644 _vcsh $(DESTDIR)$(PREFIX)/share/zsh/vendor-completions install -m 0644 _$(self) $(DESTDIR)$(PREFIX)/share/zsh/vendor-completions
manpages: $(manpages) manpages: $(manpages)
vcsh.1: doc/vcsh.1.ronn $(self).1: doc/$(self).1.ronn
ronn < doc/vcsh.1.ronn > vcsh.1 ronn < doc/$(self).1.ronn > $(self).1
clean: clean:
rm -rf vcsh.1 rm -rf $(self).1
uninstall: uninstall:
rm -rf $(DESTDIR)$(PREFIX)/bin/vcsh rm -rf $(DESTDIR)$(PREFIX)/bin/$(self)
rm -rf $(DESTDIR)$(PREFIX)/share/man/man1/vcsh.1 rm -rf $(DESTDIR)$(PREFIX)/share/man/man1/$(self).1
rm -rf $(DESTDIR)$(PREFIX)/share/doc/vcsh rm -rf $(DESTDIR)$(PREFIX)/share/doc/$(self)
rm -rf $(DESTDIR)$(PREFIX)/share/zsh/vendor-completions/_vcsh rm -rf $(DESTDIR)$(PREFIX)/share/zsh/vendor-completions/_$(self)
# Potentially harmful, used a non-standard option on purpose. # Potentially harmful, used a non-standard option on purpose.
# If PREFIX=/usr/local and that's empty... # If PREFIX=/usr/local and that's empty...
......
2012-02-27 Richard Hartmann <richih.mailinglist@gmail.com>
* Refactor Makefile
* Fix license information in manpage
2012-02-15 Richard Hartmann <richih.mailinglist@gmail.com> 2012-02-15 Richard Hartmann <richih.mailinglist@gmail.com>
* Introduce `vcsh which` * Introduce `vcsh which`
......
...@@ -180,7 +180,7 @@ This manpage and `vcsh` itself were written by Richard "RichiH" Hartmann. ...@@ -180,7 +180,7 @@ This manpage and `vcsh` itself were written by Richard "RichiH" Hartmann.
Copyright 2011-2012 Richard Hartmann <richih.mailinglist@gmail.com> Copyright 2011-2012 Richard Hartmann <richih.mailinglist@gmail.com>
Licensed under the GNU GPL version 3 or higher. Licensed under the GNU GPL version 2 or higher.
https://github.com/RichiH/vcsh https://github.com/RichiH/vcsh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment