mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-28 11:25:29 +00:00
978a7b8819
* makefile.win32: New clean and release targets, and don't bother building the samples (sample/makefile.win32 is out of date anyway) * api/makefile.win32: * glue/makefile.win32: * makefile.win32: Glade# works perfectly on win32 now; include it in the default build * sample/GladeTest.cs: * sample/GladeViewer.cs: Remove Gnome dependency and clean up svn path=/trunk/gtk-sharp/; revision=17967
41 lines
1.2 KiB
Plaintext
Executable file
41 lines
1.2 KiB
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
|
|
DLLWRAP=dllwrap -mno-cygwin --target i386-mingw32 --export-all-symbols
|
|
|
|
GLUE_OBJS = \
|
|
adjustment.o \
|
|
clipboard.o \
|
|
colorseldialog.o \
|
|
combo.o \
|
|
dialog.o \
|
|
error.o \
|
|
event.o \
|
|
fileselection.o \
|
|
layout.o \
|
|
list.o \
|
|
object.o \
|
|
paned.o \
|
|
selection.o \
|
|
slist.o \
|
|
style.o \
|
|
type.o \
|
|
value.o \
|
|
widget.o \
|
|
gladexml.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
|