mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 08:35:36 +00:00
c1440d52d1
* configure.in : AC_SUBST GACUTIL_FLAGS. require mono-0.95 (though it's really cvs bleeding edge.) * * AssemblyInfo.cs.in : s/pub/snk. delaysign=no. * * Makefile.am : s/pub/snk. portability fixes to csc from John Luke. Switch to GACUTIL_FLAGS. * doc/Makefile.am : don't build docs, install raw xml to the prefix. svn path=/trunk/gtk-sharp/; revision=29227
33 lines
823 B
Makefile
33 lines
823 B
Makefile
assemblies = ../../glib/glib-sharp.dll ../../pango/pango-sharp.dll ../../atk/atk-sharp.dll ../../gdk/gdk-sharp.dll ../../gtk/gtk-sharp.dll
|
|
references = $(addprefix /r:, $(assemblies))
|
|
TARGETS = GtkDemo.exe
|
|
CLEANFILES = $(TARGETS)
|
|
noinst_SCRIPTS = $(TARGETS)
|
|
|
|
EXTRA_DIST = $(sources)
|
|
|
|
sources = \
|
|
DemoApplicationWindow.cs \
|
|
DemoButtonBox.cs \
|
|
DemoColorSelection.cs \
|
|
DemoDialog.cs \
|
|
DemoDrawingArea.cs \
|
|
DemoEditableCells.cs \
|
|
DemoImages.cs \
|
|
DemoItemFactory.cs \
|
|
DemoListStore.cs \
|
|
DemoMain.cs \
|
|
DemoMenus.cs \
|
|
DemoPanes.cs \
|
|
DemoPixbuf.cs \
|
|
DemoSizeGroup.cs \
|
|
DemoStockBrowser.cs \
|
|
DemoTextView.cs \
|
|
DemoTreeStore.cs
|
|
|
|
build_sources = $(addprefix $(srcdir)/, $(sources))
|
|
|
|
GtkDemo.exe: $(build_sources) $(assemblies)
|
|
$(CSC) /debug /out:GtkDemo.exe $(build_sources) $(references)
|
|
|