mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 01:35:31 +00:00
a948792be0
* */Makefile.am: standardize on - options over / options for consistency. Also assists with build on msys. [Fixes #550667] svn path=/trunk/gtk-sharp/; revision=147125
29 lines
715 B
Makefile
29 lines
715 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 \
|
|
TestRadioButton.cs \
|
|
TestRange.cs \
|
|
TestStatusbar.cs \
|
|
TestDialog.cs \
|
|
TestFlipping.cs \
|
|
TestSizeGroup.cs \
|
|
TestCombo.cs \
|
|
TestComboBox.cs \
|
|
WidgetViewer.cs
|
|
|
|
build_sources = $(addprefix $(srcdir)/, $(sources))
|
|
|
|
WidgetViewer.exe: $(build_sources) $(assemblies)
|
|
$(CSC) $(CSFLAGS) -out:WidgetViewer.exe $(references) $(build_sources)
|
|
|