mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 17:55:27 +00:00
e83c55a242
* */Makefile.am : automakify the build * */Makefile.in : kill * *.custom : remove System.Drawing dependencies * *.cs : remove System.Drawing dependencies * *-api.xml : mv to *-api.raw * glue/* : mv to lib specific gluelibs for glib, gdk, gtk, and glade. * gtk/gtk-symbols : alias GtkType to GType * sources/gtk-sharp-sources.xml : create .raw files. They are now transformed to .xml files by the metadata compilation step. svn path=/trunk/gtk-sharp/; revision=23967
21 lines
466 B
Plaintext
Executable file
21 lines
466 B
Plaintext
Executable file
DIRS=generator parser glib pango atk gdk gtk glade
|
|
ROOT=/cygdrive/$(subst \,/,$(subst :\,/,$(SYSTEMROOT)))
|
|
CSC=$(ROOT)/microsoft.net/framework/v1.0.3705/csc.exe /d:WIN32
|
|
|
|
all: windows
|
|
|
|
windows:
|
|
for i in $(DIRS); do \
|
|
(cd $$i; CSC="$(CSC)" make -f makefile.win32) || exit 1;\
|
|
done;
|
|
|
|
clean:
|
|
for i in $(DIRS); do \
|
|
(cd $$i; make -f makefile.win32 clean) || exit 1;\
|
|
done;
|
|
|
|
release: clean windows
|
|
mkdir lib
|
|
find $(DIRS) -iname "*.dll" -exec cp \{\} lib \;
|
|
|