mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 10:15:28 +00:00
bd5af2ca78
* makefile.win32 : remove 1.0 csc, default to 1.1. * gtk/TreeEnumerator.cs : remove C# 2.0 usage. * gtk/glue/makefile.win32 : remove duplicated cellrenderer.o. * vte/glue/Makefile.am : use VTE_DEPENDENCIES_CFLAGS. * */makefile.win32 : add glue args to generation target. svn path=/trunk/gtk-sharp/; revision=44580
33 lines
955 B
Plaintext
Executable file
33 lines
955 B
Plaintext
Executable file
GTK_CFLAGS=`pkg-config --cflags gtk+-win32-2.0 libglade-2.0`
|
|
GTK_LIBS=`pkg-config --libs gtk+-win32-2.0 libglade-2.0`
|
|
CC=gcc -mno-cygwin -mms-bitfields
|
|
DLLWRAP=dllwrap -mno-cygwin -mms-bitfields --target i386-mingw32 --export-all-symbols
|
|
|
|
GLUE_OBJS = \
|
|
adjustment.o \
|
|
cellrenderer.o \
|
|
clipboard.o \
|
|
colorseldialog.o \
|
|
container.o \
|
|
generated.o \
|
|
nodestore.o \
|
|
object.o \
|
|
selectiondata.o \
|
|
style.o \
|
|
widget.o \
|
|
win32dll.o
|
|
|
|
all: gtksharpglue-2.dll
|
|
|
|
|
|
%.o: %.c
|
|
$(CC) -c $(CFLAGS) $(GTK_CFLAGS) -o $@ $^
|
|
|
|
|
|
gtksharpglue-2.dll: $(GLUE_OBJS)
|
|
$(DLLWRAP) --output-lib=libgtksharpglue-2.a --dllname=gtksharpglue-2.dll --driver-name=gcc --output-def=gtksharpglue-2.def $(GLUE_OBJS) $(GTK_LIBS)
|
|
|
|
|
|
clean:
|
|
rm -f gtksharpglue-2.dll *.o libgtksharpglue-2.a
|