mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 20:35:40 +00:00
Add a makefile and a README
svn path=/trunk/gtk-sharp/; revision=11586
This commit is contained in:
parent
bab803685d
commit
385e4293d0
4
doc/ChangeLog
Normal file
4
doc/ChangeLog
Normal file
|
@ -0,0 +1,4 @@
|
|||
2003-02-14 Duncan Mak <duncan@ximian.com>
|
||||
|
||||
* makefile: Added a makefile.
|
||||
* all.xml: Indexer file for the doc browser.
|
4
doc/README
Normal file
4
doc/README
Normal file
|
@ -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.
|
4
doc/all.xml
Normal file
4
doc/all.xml
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0"?>
|
||||
<monodoc>
|
||||
<source provider="ecma" base="documentation"/>
|
||||
</monodoc>
|
14
doc/makefile
Normal file
14
doc/makefile
Normal file
|
@ -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
|
Loading…
Reference in a new issue