b2f04c1d80
Much of this patch from Vlad, with substantial rework by mk. * */makefile.win32 : introduce mapdllnames.pl, api, and glue * generator/CallbackGen.cs : rework namespacing for csc compilation * generator/Parameters.cs : ditto * generator/Signal.cs : ditto * generator/SignalHandler.cs : ditto * glue/win32dll.c : new dll construction source * glib/Value.cs : new ushort ctor/cast operator * gtk/Table.custom : comment this out until we add a default ctor tag * gtk/ThreadNotify.cs : make ReadyEvent public * sources/Gdk.metadata : mark a Parse() param as ref svn path=/trunk/gtk-sharp/; revision=8590
34 lines
683 B
Text
Executable file
34 lines
683 B
Text
Executable file
GTK_CFLAGS=`pkg-config --cflags gtk+-win32-2.0`
|
|
GTK_LIBS=`pkg-config --libs gtk+-win32-2.0`
|
|
CC=gcc -b i686-pc-mingw32
|
|
DLLWRAP=dllwrap --mno-cygwin --target i386-mingw32 --export-all-symbols
|
|
|
|
GLUE_OBJS = \
|
|
adjustment.o \
|
|
dialog.o \
|
|
error.o \
|
|
event.o \
|
|
fileselection.o \
|
|
list.o \
|
|
object.o \
|
|
paned.o \
|
|
slist.o \
|
|
style.o \
|
|
type.o \
|
|
value.o \
|
|
widget.o \
|
|
win32dll.o
|
|
|
|
all: gtksharpglue.dll
|
|
|
|
|
|
%.o: %.c
|
|
$(CC) -c $(CFLAGS) $(GTK_CFLAGS) -o $@ $^
|
|
|
|
|
|
gtksharpglue.dll: $(GLUE_OBJS)
|
|
$(DLLWRAP) --output-lib=libgtksharpglue.a --dllname=gtksharpglue.dll --driver-name=gcc --output-def=gtksharpglue.def $(GLUE_OBJS) $(GTK_LIBS)
|
|
|
|
|
|
clean:
|
|
rm -f gtksharpglue.dll *.o libgtksharpglue.a
|