Hi! I added a update target to the makefile, to make it easy to update the docs from the assemblies, what do you guys think of it?
Are there any assemblies which we do not target for doc stub-generation? -- Martin Willemoes Hansen -------------------------------------------------------- E-Mail [EMAIL PROTECTED] Website mwh.sysrq.dk IRC MWH, freenode.net --------------------------------------------------------
Index: makefile =================================================================== RCS file: /cvs/public/gtk-sharp/doc/makefile,v retrieving revision 1.20 diff -u -r1.20 makefile --- makefile 6 Aug 2003 12:05:02 -0000 1.20 +++ makefile 16 Sep 2003 19:04:42 -0000 @@ -1,8 +1,7 @@ -prefix=/usr BROWSER=../../monodoc/browser/browser.exe ASSEMBLER=../../monodoc/browser/assembler.exe -GENERATOR=../../monodoc/generator/generator.exe UPDATER=../../monodoc/generator/updater.exe +DIRS=glib pango atk gdk gtk glade art gnome gda gnomedb gconf/GConf gconf/GConf.PropertyEditors rsvg all: gtk-sharp-docs.zip gtk-sharp-docs.tree @@ -11,6 +10,11 @@ gtk-sharp-docs.zip gtk-sharp-docs.tree: en/*/*.xml mono $(ASSEMBLER) --ecma en -o gtk-sharp-docs + +update: + for i in $(DIRS); do \ + mono $(UPDATER) ../$$i/*.dll -o ./en || exit 1; \ + done install: gtk-sharp-docs.zip gtk-sharp-docs.tree install -m 644 gtk-sharp-docs.zip gtk-sharp-docs.tree `monodoc --get-sourcesdir`
