* doc/Makefile,
authorbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 12 Sep 2004 08:19:47 +0000 (08:19 +0000)
committerbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 12 Sep 2004 08:19:47 +0000 (08:19 +0000)
* doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
* doc/sdccman.lyx: updated sdcc version to 2.4.4

git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3489 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
doc/Makefile
doc/clean.mk

index c070e9cf09625d1c1e42f0335a0b9ee336ba6f93..5fdf44a6b1506445110b41b3d471c122a19f41fd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
+
+       * doc/Makefile,
+       * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
+       * doc/sdccman.lyx: updated sdcc version to 2.4.4
+
 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
 
        * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
index d8d7fc3915536d65796d3155c3265cc709b9b0ef..f2cb31f2ea5b82a931d3b05db6f22cfc354a9933 100644 (file)
@@ -81,4 +81,13 @@ $(CDB).html/index.html: $(CDB).tex
        # the glossary, not implemented yet
        # makeindex -s l2hglo.ist -o $@ $<
 
+archive: all
+       rm -rf sdcc-doc sdcc-doc.tar.bz2
+       mkdir sdcc-doc
+       rsync -rC avr z80 *.pdf *.txt sdcc-doc
+       for doc in $(MANUAL) $(TSS) $(CDB); do \
+         rsync -R $$doc.html/*.html $$doc.html/*.png $$doc.html/*.css sdcc-doc/; \
+       done
+       tar -c sdcc-doc | bzip2 -9 > sdcc-doc.tar.bz2
+
 include clean.mk
index b023de5e79f7ccc7de56b02eb3229e91c389090d..679f927acde74d5492e09db5dfbf61c4af0947a8 100644 (file)
@@ -5,6 +5,7 @@ clean:
        rm -rf $(MANUAL).txt $(TSS).txt $(CDB).txt \
                *.pdf *.tex *.aux *.dvi *.idx *.ilg *.out\
                *.ind *.log *.toc *~ \#* *.ps */*.css */*.pl *.gif core *.glo
+       rm -rf sdcc-doc sdcc-doc.tar.bz2
 
 # Deleting all files created by configuring or building the program
 # -----------------------------------------------------------------