mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 04:45:37 +00:00
12 lines
181 B
Makefile
12 lines
181 B
Makefile
|
CSC = mcs
|
||
|
|
||
|
DLLS = -r glib-sharp.dll \
|
||
|
-r gtk-sharp.dll \
|
||
|
-r gdk-sharp.dll \
|
||
|
-r System.Drawing.dll
|
||
|
|
||
|
all:
|
||
|
$(CSC) /unsafe $(DLLS) SpinButton.cs
|
||
|
clean:
|
||
|
rm -f *.exe
|