Makefile
author Davor Ocelic <docelic@crystallabs.io>
Tue, 30 Apr 2019 00:43:52 +0200
changeset 109 d37c6197818f
parent 89 aa4172c204d4
permissions -rw-r--r--
Multiple help-related changes - Make every command's POD doc have a single-line introductory description. This help is then used as a one-liner summary in Term::Shell. - Tie %cmd_map to IxHash to preserve hash elements' order. - Fix bug in Term::Shell's code related to command aliases. (Also emailed Term::Shell author to include the fix in next release.) - Remove run_() which already exists in Term::Shell. - Use Term::Shell's help facilities instead of manually redefining run_help() and other related commands. The complete POD documentation is still available for viewing if user invokes ./shelldap --help. - Completer functions are disabled right now (fix coming in the next commit)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13
d7975e514b2a Add a quick Makefile to automate future release tarballs.
Mahlon E. Smith <mahlon@martini.nu>
parents:
diff changeset
     1
47
bf9d6fa1b1d4 Fix the gmake variable that snags the current version number.
Mahlon E. Smith <mahlon@martini.nu>
parents: 13
diff changeset
     2
VERSION := $(shell awk '/VERSION =/ { print $$4 }' shelldap | sed -e "s/[';]//g")
13
d7975e514b2a Add a quick Makefile to automate future release tarballs.
Mahlon E. Smith <mahlon@martini.nu>
parents:
diff changeset
     3
d7975e514b2a Add a quick Makefile to automate future release tarballs.
Mahlon E. Smith <mahlon@martini.nu>
parents:
diff changeset
     4
release:
d7975e514b2a Add a quick Makefile to automate future release tarballs.
Mahlon E. Smith <mahlon@martini.nu>
parents:
diff changeset
     5
	@mkdir shelldap-${VERSION}
d7975e514b2a Add a quick Makefile to automate future release tarballs.
Mahlon E. Smith <mahlon@martini.nu>
parents:
diff changeset
     6
	@cp shelldap shelldap-${VERSION}
89
aa4172c204d4 Add a "real" change log.
Mahlon E. Smith <mahlon@martini.nu>
parents: 47
diff changeset
     7
	@pod2text shelldap > shelldap-${VERSION}/USAGE
13
d7975e514b2a Add a quick Makefile to automate future release tarballs.
Mahlon E. Smith <mahlon@martini.nu>
parents:
diff changeset
     8
	@tar -czvf shelldap-${VERSION}.tar.gz shelldap-${VERSION}
d7975e514b2a Add a quick Makefile to automate future release tarballs.
Mahlon E. Smith <mahlon@martini.nu>
parents:
diff changeset
     9
	@rm -rf shelldap-${VERSION}