mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 20:35:30 +00:00
4616bb2fb2
* sample/rsvg/Makefile.am : make conditional on ENABLE_RSVG svn path=/trunk/gtk-sharp/; revision=24234
16 lines
556 B
Makefile
16 lines
556 B
Makefile
references = /r:../../glib/glib-sharp.dll /r:../../pango/pango-sharp.dll /r:../../atk/atk-sharp.dll /r:../../gdk/gdk-sharp.dll /r:../../gtk/gtk-sharp.dll /r:../../glade/glade-sharp.dll /r:../../art/art-sharp.dll /r:../../gnome/gnome-sharp.dll /r:../../rsvg/rsvg-sharp.dll
|
|
|
|
if ENABLE_RSVG
|
|
TARGETS = svghelloworld.exe
|
|
else
|
|
TARGETS =
|
|
endif
|
|
CLEANFILES = $(TARGETS)
|
|
noinst_SCRIPTS = $(TARGETS)
|
|
EXTRA_DIST = svghelloworld.cs sample.svg
|
|
|
|
SOURCES = $(srcdir)/svghelloworld.cs
|
|
svghelloworld.exe: $(SOURCES)
|
|
$(CSC) /out:svghelloworld.exe $(SOURCES) $(references)
|
|
|