Makefile
author Peter Marschall <peter@adpm.de>
Sun, 06 Mar 2011 20:11:47 +0100
changeset 30 e4b4b0968107
parent 13 d7975e514b2a
child 47 bf9d6fa1b1d4
permissions -rw-r--r--
add method path_to_dn() to convert a given "path" to a DN path_to_dn() replaces the occurrences of '~', '.' and '..' in a path given and returns a DN. However, it does not check whether the DN is valid. Especially: - on return it is not guaranteed that the DN exists - on return the first part does not need to be a valid RDN
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
d7975e514b2a Add a quick Makefile to automate future release tarballs.
Mahlon E. Smith <mahlon@martini.nu>
parents:
diff changeset
     2
VERSION := $(shell awk '/VERSION/ { print $$4 }' shelldap | sed -e "s/[';]//g")
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}