From: bernhardheld Date: Sun, 12 Sep 2004 08:42:29 +0000 (+0000) Subject: Added ucsim and as docs to archive X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=b0e8c00841f18ff1c9eded0a5d40fb6b706c390c;p=fw%2Fsdcc Added ucsim and as docs to archive git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3490 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/doc/Makefile b/doc/Makefile index f2cb31f2..904e62c8 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -85,9 +85,17 @@ 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 + + mkdir sdcc-doc/as + rsync -rC ../as/doc/* sdcc-doc/as/ + + mkdir sdcc-doc/ucsim + cd ../sim/ucsim/doc; rsync *.html *.jpg *.gif *.fig ../../../doc/sdcc-doc/ucsim/ + tar -c sdcc-doc | bzip2 -9 > sdcc-doc.tar.bz2 include clean.mk