mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 17:15:34 +00:00
9 lines
267 B
Makefile
9 lines
267 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 WidgetViewer.cs
|
||
|
clean:
|
||
|
rm -f *.exe *~
|