Ryujinx-GtkSharp/sample/test/Makefile.am
Mike Kestner 34c0ecbcf7 The rest of the first pass.
*.*: Stubbing and tweaking and cajoling and disabling to get
the first successful build of 3.0 bindings.
2011-02-08 22:15:37 -06:00

36 lines
846 B
Makefile

TARGETS = WidgetViewer.exe
assemblies= \
$(top_builddir)/glib/glib-sharp.dll \
$(top_builddir)/gio/gio-sharp.dll \
$(top_builddir)/cairo/cairo-sharp.dll \
$(top_builddir)/pango/pango-sharp.dll \
$(top_builddir)/atk/atk-sharp.dll \
$(top_builddir)/gdk/gdk-sharp.dll \
$(top_builddir)/gtk/gtk-sharp.dll
references = $(addprefix -r:, $(assemblies))
noinst_SCRIPTS = $(TARGETS)
CLEANFILES = $(TARGETS)
EXTRA_DIST = $(sources) ChangeLog
sources = \
TestCheckButton.cs \
TestColorSelection.cs \
TestRadioButton.cs \
TestRange.cs \
TestStatusbar.cs \
TestDialog.cs \
TestFlipping.cs \
TestSizeGroup.cs \
TestComboBox.cs \
WidgetViewer.cs
build_sources = $(addprefix $(srcdir)/, $(sources))
WidgetViewer.exe: $(build_sources) $(assemblies)
$(CSC) $(CSFLAGS) -out:WidgetViewer.exe $(references) $(build_sources)