diff --git a/doc/ChangeLog b/doc/ChangeLog new file mode 100644 index 000000000..a8baa30d9 --- /dev/null +++ b/doc/ChangeLog @@ -0,0 +1,4 @@ +2003-02-14 Duncan Mak + + * makefile: Added a makefile. + * all.xml: Indexer file for the doc browser. \ No newline at end of file diff --git a/doc/README b/doc/README new file mode 100644 index 000000000..4010dc848 --- /dev/null +++ b/doc/README @@ -0,0 +1,4 @@ +To run the doc browser on these docs, run 'make b'. + +If it doesn't run, please change the paths in the makefile and point +ASSEMBLER and BROWSER to where you put your assembler.exe and browser.exe. \ No newline at end of file diff --git a/doc/all.xml b/doc/all.xml new file mode 100644 index 000000000..4dcf347d5 --- /dev/null +++ b/doc/all.xml @@ -0,0 +1,4 @@ + + + + diff --git a/doc/makefile b/doc/makefile new file mode 100644 index 000000000..b1c988cec --- /dev/null +++ b/doc/makefile @@ -0,0 +1,14 @@ +BROWSER=../../monodoc/browser/browser.exe +ASSEMBLER=../../monodoc/browser/assembler.exe +GENERATOR=generator.exe + +all: tree + +b: + mono --debug $(BROWSER) + +tree: + mono $(ASSEMBLER) --ecma en/ -o documentation +clean: + rm *.tree + rm *zip