aeb6280e2f
* WidgetViewer.cs: Fixed InvalidCastException. * TestStatusbar.cs: Made it work. Sigh, I dunno why I got it wrong the first time. * TestMenus.cs: Use null instead of new SList (IntPtr.Zero); and remove the unnecessary try... catch block. svn path=/trunk/gtk-sharp/; revision=5889
10 lines
301 B
Makefile
10 lines
301 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.csTestFlipping.cs TestMenus.cs \
|
|
WidgetViewer.cs
|
|
clean:
|
|
rm -f *.exe *~
|