11 lines
222 B
Makefile
11 lines
222 B
Makefile
|
|
||
|
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
|
||
|
|
||
|
unix:
|
||
|
@echo "'make unix' is broken for now."
|