mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 09:55:38 +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
31 lines
747 B
Makefile
31 lines
747 B
Makefile
TARGETS = WidgetViewer.exe
|
|
|
|
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))
|
|
|
|
noinst_SCRIPTS = $(TARGETS)
|
|
CLEANFILES = $(TARGETS)
|
|
|
|
EXTRA_DIST = $(sources) ChangeLog
|
|
|
|
sources = \
|
|
TestCheckButton.cs \
|
|
TestColorSelection.cs \
|
|
TestFileSelection.cs \
|
|
TestRadioButton.cs \
|
|
TestRange.cs \
|
|
TestStatusbar.cs \
|
|
TestToolbar.cs \
|
|
TestDialog.cs \
|
|
TestFlipping.cs \
|
|
TestMenus.cs \
|
|
TestSizeGroup.cs \
|
|
TestCombo.cs \
|
|
WidgetViewer.cs
|
|
|
|
build_sources = $(addprefix $(srcdir)/, $(sources))
|
|
|
|
WidgetViewer.exe: $(build_sources) $(assemblies)
|
|
$(CSC) /out:WidgetViewer.exe $(references) $(build_sources)
|
|
|