1999-12-11 23:41:46 +00:00
|
|
|
## Makefile for building the GDK DLL with Microsoft C
|
|
|
|
## Use: nmake -f makefile.msc
|
|
|
|
|
|
|
|
## You must first build the Win32-dependent sources in the win32 subdirectory.
|
|
|
|
|
|
|
|
## There is no install target, you have to decide where and
|
|
|
|
## how to install for yourself.
|
|
|
|
|
2003-07-20 15:50:14 +00:00
|
|
|
TOP = ..\..
|
2001-11-09 21:52:52 +00:00
|
|
|
!INCLUDE $(TOP)/glib/build/win32/make.msc
|
2000-10-09 19:49:42 +00:00
|
|
|
|
1999-12-11 23:41:46 +00:00
|
|
|
# Location of the Wintab toolkit. Downloadable from http://www.pointing.com.
|
2000-10-09 19:49:42 +00:00
|
|
|
# definition should possibly go to build/win32/module.def, too.
|
2008-05-23 20:29:27 +00:00
|
|
|
!IFNDEF WTKIT
|
|
|
|
WTKIT = $(TOP)\wtkit126
|
|
|
|
!ENDIF
|
1999-12-11 23:41:46 +00:00
|
|
|
|
|
|
|
###############################################################
|
|
|
|
|
|
|
|
# Nothing much configurable below
|
2000-10-09 19:49:42 +00:00
|
|
|
# overwrite version?
|
2002-03-05 21:04:09 +00:00
|
|
|
GTK_VER=2.0
|
2001-02-19 21:54:04 +00:00
|
|
|
GDK_PIXBUF_VER=$(GTK_VER)
|
1999-12-11 23:41:46 +00:00
|
|
|
|
2001-04-13 23:56:19 +00:00
|
|
|
!IFNDEF PERL
|
|
|
|
PERL = perl
|
|
|
|
!ENDIF
|
|
|
|
|
2009-07-12 16:51:20 +00:00
|
|
|
INCLUDES = -FImsvc_recommended_pragmas.h \
|
|
|
|
-I . -I .. \
|
2005-02-07 20:22:05 +00:00
|
|
|
$(GLIB_CFLAGS) $(PANGO_CFLAGS) $(CAIRO_CFLAGS) -I ../gdk-pixbuf \
|
2009-07-12 16:51:20 +00:00
|
|
|
|
|
|
|
DEFINES = \
|
|
|
|
-DHAVE_CONFIG_H -DGDK_ENABLE_BROKEN \
|
2003-11-15 20:35:55 +00:00
|
|
|
-DGDK_VERSION=\"$(GTK_VER)\" \
|
2009-07-12 16:51:20 +00:00
|
|
|
-DG_LOG_DOMAIN=\"Gdk\" \
|
|
|
|
-DGDK_COMPILATION -DG_LOG_DOMAIN=\"Gdk\"
|
2003-11-15 20:35:55 +00:00
|
|
|
|
2008-05-23 20:29:27 +00:00
|
|
|
EXTRALIBS = \
|
|
|
|
$(WTKIT)\lib\i386\wntab32x.lib \
|
|
|
|
$(GLIB_LIBS) \
|
|
|
|
..\gdk-pixbuf\gdk_pixbuf-$(GDK_PIXBUF_VER).lib \
|
2009-07-01 19:32:46 +00:00
|
|
|
$(PANGOWIN32_LIBS) $(PANGOCAIRO_LIBS) $(INTL_LIBS) $(CAIRO_LIBS) \
|
2008-05-23 20:29:27 +00:00
|
|
|
$(PANGOCAIRO_LIBS)
|
1999-12-11 23:41:46 +00:00
|
|
|
|
2001-07-28 23:02:02 +00:00
|
|
|
gdk-win32-backend :
|
|
|
|
cd win32
|
|
|
|
nmake -nologo -f makefile.msc
|
|
|
|
cd ..
|
|
|
|
|
1999-12-11 23:41:46 +00:00
|
|
|
all: \
|
|
|
|
..\config.h \
|
|
|
|
gdkconfig.h \
|
2001-04-13 23:56:19 +00:00
|
|
|
gdkenumtypes.h \
|
|
|
|
gdkenumtypes.c \
|
2003-07-20 15:50:14 +00:00
|
|
|
gdkmarshalers.h \
|
|
|
|
gdkmarshalers.c \
|
2001-07-28 23:02:02 +00:00
|
|
|
gdk-win32-backend \
|
2003-07-20 15:50:14 +00:00
|
|
|
libgdk-win32-$(GTK_VER)-0.dll \
|
2001-11-09 21:52:52 +00:00
|
|
|
testgdk.exe \
|
|
|
|
gdk-win32-$(GTK_VER)s.lib \
|
|
|
|
# gdk-x11-$(GTK_VER).dll \
|
1999-12-11 23:41:46 +00:00
|
|
|
|
|
|
|
gdk_OBJECTS = \
|
|
|
|
gdk.obj \
|
2008-05-23 20:29:27 +00:00
|
|
|
gdkapplaunchcontext.obj \
|
2005-07-03 15:47:42 +00:00
|
|
|
gdkcairo.obj \
|
1999-12-11 23:41:46 +00:00
|
|
|
gdkcolor.obj \
|
2000-02-03 01:19:03 +00:00
|
|
|
gdkcursor.obj \
|
2002-06-10 21:58:00 +00:00
|
|
|
gdkdisplay.obj \
|
2003-07-20 15:50:14 +00:00
|
|
|
gdkdisplaymanager.obj \
|
|
|
|
gdkdnd.obj \
|
1999-12-11 23:41:46 +00:00
|
|
|
gdkdraw.obj \
|
2001-04-13 23:56:19 +00:00
|
|
|
gdkenumtypes.obj \
|
1999-12-11 23:41:46 +00:00
|
|
|
gdkevents.obj \
|
|
|
|
gdkgc.obj \
|
|
|
|
gdkglobals.obj \
|
2008-08-01 14:43:22 +00:00
|
|
|
gdkwindowimpl.obj \
|
2003-07-20 15:50:14 +00:00
|
|
|
gdkkeynames.obj \
|
2000-12-14 23:14:18 +00:00
|
|
|
gdkkeys.obj \
|
2000-10-09 19:49:42 +00:00
|
|
|
gdkkeyuni.obj \
|
2009-07-04 10:15:39 +00:00
|
|
|
gdkmarshalers.obj \
|
|
|
|
gdkoffscreenwindow.obj \
|
2000-10-09 19:49:42 +00:00
|
|
|
gdkpango.obj \
|
2001-02-19 21:54:04 +00:00
|
|
|
gdkpixbuf-drawable.obj \
|
2000-10-09 19:49:42 +00:00
|
|
|
gdkpixbuf-render.obj \
|
1999-12-11 23:41:46 +00:00
|
|
|
gdkrectangle.obj \
|
2002-06-10 21:58:00 +00:00
|
|
|
gdkscreen.obj \
|
Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
gdkselection.obj \
|
|
|
|
gdkvisual.obj \
|
1999-12-11 23:41:46 +00:00
|
|
|
gdkwindow.obj
|
|
|
|
|
2001-04-13 23:56:19 +00:00
|
|
|
gdk_public_h_sources = \
|
|
|
|
gdk.h \
|
|
|
|
gdkcolor.h \
|
|
|
|
gdkcursor.h \
|
|
|
|
gdkdnd.h \
|
|
|
|
gdkdrawable.h \
|
|
|
|
gdkevents.h \
|
|
|
|
gdkgc.h \
|
|
|
|
gdkkeysyms.h \
|
|
|
|
gdkinput.h \
|
|
|
|
gdkkeys.h \
|
|
|
|
gdkpango.h \
|
|
|
|
gdkpixbuf.h \
|
|
|
|
gdkproperty.h \
|
|
|
|
gdkselection.h \
|
|
|
|
gdktypes.h \
|
|
|
|
gdkvisual.h \
|
|
|
|
gdkwindow.h \
|
|
|
|
|
2003-07-20 15:50:14 +00:00
|
|
|
# private marshalers
|
|
|
|
gdkmarshalers.h : gdkmarshalers.list
|
2009-07-12 16:51:20 +00:00
|
|
|
$(GLIB)\gobject\glib-genmarshal --prefix=_gdk_marshal gdkmarshalers.list --header >>gdkmarshalers.h
|
2003-07-20 15:50:14 +00:00
|
|
|
|
|
|
|
gdkmarshalers.c : gdkmarshalers.list
|
2009-07-12 16:51:20 +00:00
|
|
|
$(GLIB)\gobject\glib-genmarshal --prefix=_gdk_marshal gdkmarshalers.list --body >gdkmarshalers.c
|
2003-07-20 15:50:14 +00:00
|
|
|
|
2008-05-23 20:29:27 +00:00
|
|
|
gdkenumtypes.h: $(gdk_public_h_sources) gdkenumtypes.h.template
|
|
|
|
$(PERL) $(GLIB)\gobject\glib-mkenums --template gdkenumtypes.h.template \
|
|
|
|
$(gdk_public_h_sources) > gdkenumtypes.h
|
2001-04-13 23:56:19 +00:00
|
|
|
|
2008-05-23 20:29:27 +00:00
|
|
|
gdkenumtypes.c: $(gdk_public_h_sources) gdkenumtypes.c.template
|
|
|
|
$(PERL) $(GLIB)\gobject\glib-mkenums --template gdkenumtypes.c.template \
|
|
|
|
$(gdk_public_h_sources) > gdkenumtypes.c
|
2001-02-19 21:54:04 +00:00
|
|
|
|
1999-12-11 23:41:46 +00:00
|
|
|
..\config.h : ..\config.h.win32
|
|
|
|
copy ..\config.h.win32 ..\config.h
|
|
|
|
|
|
|
|
gdkconfig.h : gdkconfig.h.win32
|
|
|
|
copy gdkconfig.h.win32 gdkconfig.h
|
|
|
|
|
2004-10-29 21:44:53 +00:00
|
|
|
gdk.def: gdk.symbols
|
|
|
|
echo EXPORTS > gdk.def
|
2005-09-18 12:28:42 +00:00
|
|
|
cl /EP -DINCLUDE_VARIABLES -DG_OS_WIN32 -DGDK_WINDOWING_WIN32 -DALL_FILES \
|
|
|
|
-DG_GNUC_CONST= \
|
|
|
|
gdk.symbols >> gdk.def
|
2004-10-29 21:44:53 +00:00
|
|
|
|
2003-07-20 15:50:14 +00:00
|
|
|
libgdk-win32-$(GTK_VER)-0.dll : $(gdk_OBJECTS) gdk.def win32\gdk-win32.lib
|
|
|
|
$(CC) $(CFLAGS) -LD -Fe$@ $(gdk_OBJECTS) win32\gdk-win32.lib $(EXTRALIBS) \
|
|
|
|
gdi32.lib user32.lib imm32.lib shell32.lib ole32.lib uuid.lib win32\gdk.res \
|
|
|
|
$(LDFLAGS) /implib:gdk-win32-$(GTK_VER).lib /def:gdk.def
|
2000-10-09 19:49:42 +00:00
|
|
|
|
2001-11-09 21:52:52 +00:00
|
|
|
gdk-win32-$(GTK_VER)s.lib : $(gdk_OBJECTS)
|
|
|
|
lib /out:gdk-win32-$(GTK_VER)s.lib $(gdk_OBJECTS) win32\gdk-win32.lib
|
|
|
|
|
|
|
|
gdk-x11-$(GTK_VER).dll : $(gdk_OBJECTS) gdk.def x11\gdk-x11.lib
|
|
|
|
$(CC) $(CFLAGS) -LD -Fegdk-x11-$(GTK_VER).dll $(gdk_OBJECTS) \
|
|
|
|
$(PANGO)\pango\pangox-$(PANGO_VER).lib \
|
|
|
|
x11\gdk-x11.lib $(X11_LIBS) $(EXTRALIBS) user32.lib $(LDFLAGS) /def:gdk.def
|
|
|
|
|
2003-07-20 15:50:14 +00:00
|
|
|
testgdk.exe : libgdk-win32-$(GTK_VER)-0.dll testgdk.obj
|
2001-02-19 21:54:04 +00:00
|
|
|
$(CC) -Fetestgdk.exe testgdk.obj gdk-win32-$(GTK_VER).lib $(EXTRALIBS) $(LDFLAGS)
|
1999-12-11 23:41:46 +00:00
|
|
|
|
2001-02-19 21:54:04 +00:00
|
|
|
clean::
|
2006-01-05 23:55:08 +00:00
|
|
|
cd win32
|
|
|
|
nmake -f makefile.msc clean
|
|
|
|
cd ..
|
2003-07-20 15:50:14 +00:00
|
|
|
del gdkmarshalers.c
|
|
|
|
del gdkmarshalers.h
|
1999-12-11 23:41:46 +00:00
|
|
|
del *.dll
|
|
|
|
del *.obj
|
|
|
|
del *.lib
|
|
|
|
del *.err
|
|
|
|
del *.res
|