2003-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>

* rsvg/Makefile.in:
	* sample/rsvg/Makefile.in: hopefully fixes building from scratch.

	* rsvg/Tool.cs: the class should be public.

svn path=/trunk/gtk-sharp/; revision=14303
This commit is contained in:
Gonzalo Paniagua Javier 2003-05-05 15:41:41 +00:00
parent a78af42d2f
commit 9f3f9f149a
3 changed files with 24 additions and 12 deletions

View File

@ -1,3 +1,10 @@
2003-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* rsvg/Makefile.in:
* sample/rsvg/Makefile.in: hopefully fixes building from scratch.
* rsvg/Tool.cs: the class should be public.
2003-05-02 Alp Toker <alp@atoker.com> 2003-05-02 Alp Toker <alp@atoker.com>
* sources/gtk-sharp.sources: * sources/gtk-sharp.sources:

View File

@ -10,13 +10,12 @@ $(OUTPUT): *.cs generated/*.cs
$(COMPILER) \ $(COMPILER) \
--unsafe\ --unsafe\
--target library \ --target library \
-L ../glib \ -r ../glib/glib-sharp.dll \
-L ../pango \ -r ../pango/pango-sharp.dll \
-L ../atk \ -r ../atk/atk-sharp.dll \
-L ../gdk \ -r ../gdk/gdk-sharp.dll \
-L ../gtk \ -r ../gtk/gtk-sharp.dll \
-L ../art \ -r ../art/art-sharp.dll \
-r glib-sharp -r pango-sharp -r atk-sharp -r gdk-sharp -r gtk-sharp -r art-sharp \
-o $(OUTPUT) \ -o $(OUTPUT) \
--recurse '*.cs' --recurse '*.cs'

View File

@ -2,11 +2,17 @@
@ENABLE_RSVG_TRUE@all: svghelloworld.exe @ENABLE_RSVG_TRUE@all: svghelloworld.exe
svghelloworld.exe: svghelloworld.cs svghelloworld.exe: svghelloworld.cs
mcs svghelloworld.cs \ mcs /out:svghelloworld.exe svghelloworld.cs \
-r ../../gnome/gnome-sharp.dll \ /r:../../glib/glib-sharp.dll \
-r ../../gtk/gtk-sharp.dll \ /r:../../pango/pango-sharp.dll \
-r ../../gdk/gdk-sharp.dll \ /r:../../atk/atk-sharp.dll \
-r ../../rsvg/rsvg-sharp.dll /r:../../art/art-sharp.dll \
/r:../../gdk/gdk-sharp.dll \
/r:../../gtk/gtk-sharp.dll \
/r:../../gnome/gnome-sharp.dll \
/r:../../glade/glade-sharp.dll \
/r:System.Drawing \
/r:../../rsvg/rsvg-sharp.dll
clean: clean:
rm -f *.exe rm -f *.exe