mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 05:25:34 +00:00
aa56559530
* Makefile: * WidgetViewer.cs: Added TestMenus.cs * TestMenus.cs: New test for testing menu widgets. svn path=/trunk/gtk-sharp/; revision=5856
11 lines
302 B
Makefile
11 lines
302 B
Makefile
MCS=mcs
|
|
|
|
all:
|
|
$(MCS) -o WidgetViewer.exe -r glib-sharp -r gdk-sharp -r gtk-sharp \
|
|
TestCheckButton.cs TestColorSelection.cs TestFileSelection.cs TestRadioButton.cs \
|
|
TestRange.cs TestStatusbar.cs TestToolbar.cs TestDialog.cs TestFlipping.cs \
|
|
TestMenus.cs \
|
|
WidgetViewer.cs
|
|
clean:
|
|
rm -f *.exe *~
|