mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-03-22 13:55:08 +00:00
14 lines
294 B
Makefile
Executable file
14 lines
294 B
Makefile
Executable file
|
|
all:
|
|
@echo "You must use 'make windows' or 'make unix'."
|
|
@echo "'make unix' is broken for now."
|
|
|
|
windows:
|
|
$(CSC) /unsafe /target:library /out:glib-sharp.dll /recurse:*.cs
|
|
|
|
linux:
|
|
mcs --unsafe --target library -o glib-sharp.dll --recurse *.cs
|
|
|
|
unix:
|
|
@echo "'make unix' is broken for now."
|