Makefile
author Mahlon E. Smith <mahlon@laika.com>
Fri, 15 Mar 2013 10:02:20 -0700
changeset 50 21ba5eb5c2fc
parent 47 bf9d6fa1b1d4
child 89 aa4172c204d4
permissions -rw-r--r--
Numerous changes: - Add a command line option (-f) to specify an alternate configuration file. - Whitespace and comment cleanup. - Allow setting the $editor from the config file. - Break out the fetching of valid must/may attributes for an object class into a separate function - Offer to re-enter the editor if there is an error during create or edit, so changes aren't lost. Thanks to Alexander Perlis <aperlis@math.lsu.edu> for the suggestion. - Wrap the passwd command with connection retry. - Change the version number to reflect semantic versioning (http://semver.org), in preparation of the 1.0.0 release.
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}
d7975e514b2a Add a quick Makefile to automate future release tarballs.
Mahlon E. Smith <mahlon@martini.nu>
parents:
diff changeset
     7
	@hg log --style=changelog > shelldap-${VERSION}/ChangeLog
d7975e514b2a Add a quick Makefile to automate future release tarballs.
Mahlon E. Smith <mahlon@martini.nu>
parents:
diff changeset
     8
	@pod2text shelldap > shelldap-${VERSION}/README
d7975e514b2a Add a quick Makefile to automate future release tarballs.
Mahlon E. Smith <mahlon@martini.nu>
parents:
diff changeset
     9
	@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
    10
	@rm -rf shelldap-${VERSION}