From: olivier <> Date: Tue, 14 Apr 2009 18:41:07 +0000 (+0000) Subject: eztelemeta: add changelog, make VERSION dynamic X-Git-Tag: 1.1~659 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=244d786278bd86e77b2a44ede18cf2dfd45e0d50;p=telemeta.git eztelemeta: add changelog, make VERSION dynamic --- diff --git a/tools/eztelemeta/ChangeLog b/tools/eztelemeta/ChangeLog new file mode 100644 index 00000000..e047d7be --- /dev/null +++ b/tools/eztelemeta/ChangeLog @@ -0,0 +1,6 @@ +eztelemeta (0.1) + * Initial release + + -- Olivier Guilyardi + + diff --git a/tools/eztelemeta/Makefile b/tools/eztelemeta/Makefile index f0b89fe7..153e35f0 100644 --- a/tools/eztelemeta/Makefile +++ b/tools/eztelemeta/Makefile @@ -1,7 +1,7 @@ PACKAGE = eztelemeta -VERSION := $(shell cat VERSION) +VERSION = 0.1 -DOCS = VERSION doc/README.fr doc/README.fr.html doc/doc.css +DOCS = VERSION ChangeLog doc/README.fr doc/README.fr.html doc/doc.css SETTINGS = \ settings/content.ini.append \ @@ -41,11 +41,15 @@ $(DISTPKG): doc $(DISTFILES) tar -czf $@ --transform 's|^|eztelemeta/|' $(DISTFILES) .PHONY: doc -doc: +doc: VERSION $(MAKE) -C doc .PHONY: clean clean: $(MAKE) -C doc clean + rm VERSION + +VERSION: + echo $(VERSION) > $@ # vim: set noexpandtab: ts=2: sw=2: diff --git a/tools/eztelemeta/VERSION b/tools/eztelemeta/VERSION deleted file mode 100644 index 49d59571..00000000 --- a/tools/eztelemeta/VERSION +++ /dev/null @@ -1 +0,0 @@ -0.1 diff --git a/tools/eztelemeta/doc/Makefile b/tools/eztelemeta/doc/Makefile index 4698602b..fc77ff30 100644 --- a/tools/eztelemeta/doc/Makefile +++ b/tools/eztelemeta/doc/Makefile @@ -7,7 +7,7 @@ README.fr.html: README.fr doc.css rst2html --stylesheet=doc.css --link-stylesheet README.fr $@ README.fr: README.fr.in ../VERSION - cat $^ | sed "s/EZTVERSION/$(VERSION)/g" > $@ + cat README.fr.in | sed "s/EZTVERSION/$(VERSION)/g" > $@ clean: rm $(DOCS)