7c31e5f7cb
* makefile : add linux build. * generator/makefile : add linux build. svn path=/trunk/gtk-sharp/; revision=2839
11 lines
400 B
Makefile
11 lines
400 B
Makefile
|
|
all:
|
|
@echo "You must use 'make windows' or 'make unix'."
|
|
@echo "'make unix' is broken for now."
|
|
|
|
windows:
|
|
$(CSC) /unsafe /target:library /r:../glib/glib-sharp.dll /r:../pango/pango-sharp.dll /out:atk-sharp.dll /recurse:*.cs
|
|
|
|
unix:
|
|
@echo "'make unix' is broken for now."
|
|
$(CSC) --unsafe --target=library --r=../glib/glib-sharp.dll --r=../pango/pango-sharp.dll --out=atk-sharp.dll --recurse=*.cs
|