9f3f9f149a
* 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
21 lines
527 B
Makefile
21 lines
527 B
Makefile
@ENABLE_RSVG_FALSE@all:
|
|
@ENABLE_RSVG_TRUE@all: svghelloworld.exe
|
|
|
|
svghelloworld.exe: svghelloworld.cs
|
|
mcs /out:svghelloworld.exe svghelloworld.cs \
|
|
/r:../../glib/glib-sharp.dll \
|
|
/r:../../pango/pango-sharp.dll \
|
|
/r:../../atk/atk-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:
|
|
rm -f *.exe
|
|
|
|
distclean: clean
|
|
@ENABLE_RSVG_TRUE@ rm -f Makefile
|