* src/SDCCsymt.c (compStructSize): make bitfields without (un)signed specifier unsigned
[fw/sdcc] / doc / Makefile
index d8d7fc3915536d65796d3155c3265cc709b9b0ef..7652f01cdaa68fdacbc8daff3b127cb40fb026c2 100644 (file)
@@ -81,4 +81,21 @@ $(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 -rCt avr z80 *.pdf *.txt sdcc-doc
+
+       for doc in $(MANUAL) $(TSS) $(CDB); do \
+         rsync -Rt $$doc.html/*.html $$doc.html/*.png $$doc.html/*.css sdcc-doc/; \
+       done
+
+       mkdir sdcc-doc/as
+       rsync -rCt ../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