]> git.parisson.com Git - telemeta.git/commitdiff
eztelemeta: add changelog, make VERSION dynamic
authorolivier <>
Tue, 14 Apr 2009 18:41:07 +0000 (18:41 +0000)
committerolivier <>
Tue, 14 Apr 2009 18:41:07 +0000 (18:41 +0000)
tools/eztelemeta/ChangeLog [new file with mode: 0644]
tools/eztelemeta/Makefile
tools/eztelemeta/VERSION [deleted file]
tools/eztelemeta/doc/Makefile

diff --git a/tools/eztelemeta/ChangeLog b/tools/eztelemeta/ChangeLog
new file mode 100644 (file)
index 0000000..e047d7b
--- /dev/null
@@ -0,0 +1,6 @@
+eztelemeta (0.1)
+    * Initial release
+
+ -- Olivier Guilyardi <olivier {at} samalyse {dot} com>  
+
+
index f0b89fe7aa15d5808122d10ddc9ce25198ce6c53..153e35f06a6b7c59a4a71ae206d5543fc9f01914 100644 (file)
@@ -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 (file)
index 49d5957..0000000
+++ /dev/null
@@ -1 +0,0 @@
-0.1
index 4698602b76317b9e13b621c2fb8107b776fbb407..fc77ff3041c46743588852b14d17c86766a1f2cf 100644 (file)
@@ -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)