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.
|
|
|
|
|
2000-10-09 19:49:42 +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.
|
1999-12-11 23:41:46 +00:00
|
|
|
WTKIT = ..\..\wtkit126
|
|
|
|
|
|
|
|
###############################################################
|
|
|
|
|
|
|
|
# Nothing much configurable below
|
|
|
|
|
|
|
|
!IFNDEF DEBUG
|
|
|
|
# Full optimization:
|
Internal GDK error reporting changes: (gdk_win32_gdi_failed) New function
2000-03-07 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkmain-win32.c: Internal GDK error reporting changes:
(gdk_win32_gdi_failed) New function for reporting errors from GDI,
for which it is no use to call GetLastError on Win9x.
(gdk_other_api_failed) New function, for
general error reporting without calling GetLastError.
(gdk_win32_api_failed) OTOH, this function always calls
GetLastError. (gdk_win32_last_error_string) Remove this function,
GLib has the equivalent now.
* gdk/win32/gdkprivate-win32.h: Declare the above, and macros to
call them with function name, file name and line number in the
arguments.
* gdk/win32/*.c: Use the new macros for reporting errors from GDI
functions.
* gtk/gtk.def: Add some missing entry points.
* gtk/gtkcompat.h.in: Define gtk_paned_gutter_size and
gtk_paned_set_gutter_size, which don't exist any longer, as void.
Fixes by Hans Breuer:
* gdk/makefile.msc: Update for debugging.
* gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_dashes): Fake
implementation, just use the PS_DASH, PS_DOT, PS_DASHDOT or
PS_DASHDOTDOT or PS_DASH styles depending on the number of entries
in the dash_list.
* gdk/win32/gdkwin32.h (GDK_FONT_XFONT): New macro, similar as in
the x11 backend.
* gdk/win32/gdkprivate-win32.h (IS_WIN_NT): New macro.
* gtk/testgtk.c: Include config.h, guard inclusion of unistd.h.
2000-03-08 06:18:41 +00:00
|
|
|
OPTIMIZE = -Ox -MD -Zi
|
|
|
|
LINKDEBUG = /nodefaultlib:libc.lib
|
1999-12-11 23:41:46 +00:00
|
|
|
!ELSE
|
|
|
|
# Debugging:
|
|
|
|
OPTIMIZE = -Zi -MDd
|
Internal GDK error reporting changes: (gdk_win32_gdi_failed) New function
2000-03-07 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkmain-win32.c: Internal GDK error reporting changes:
(gdk_win32_gdi_failed) New function for reporting errors from GDI,
for which it is no use to call GetLastError on Win9x.
(gdk_other_api_failed) New function, for
general error reporting without calling GetLastError.
(gdk_win32_api_failed) OTOH, this function always calls
GetLastError. (gdk_win32_last_error_string) Remove this function,
GLib has the equivalent now.
* gdk/win32/gdkprivate-win32.h: Declare the above, and macros to
call them with function name, file name and line number in the
arguments.
* gdk/win32/*.c: Use the new macros for reporting errors from GDI
functions.
* gtk/gtk.def: Add some missing entry points.
* gtk/gtkcompat.h.in: Define gtk_paned_gutter_size and
gtk_paned_set_gutter_size, which don't exist any longer, as void.
Fixes by Hans Breuer:
* gdk/makefile.msc: Update for debugging.
* gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_dashes): Fake
implementation, just use the PS_DASH, PS_DOT, PS_DASHDOT or
PS_DASHDOTDOT or PS_DASH styles depending on the number of entries
in the dash_list.
* gdk/win32/gdkwin32.h (GDK_FONT_XFONT): New macro, similar as in
the x11 backend.
* gdk/win32/gdkprivate-win32.h (IS_WIN_NT): New macro.
* gtk/testgtk.c: Include config.h, guard inclusion of unistd.h.
2000-03-08 06:18:41 +00:00
|
|
|
LINKDEBUG = /nodefaultlib:libcd.lib /nodefaultlib:libc.lib /debug
|
1999-12-11 23:41:46 +00:00
|
|
|
!ENDIF
|
|
|
|
|
|
|
|
# cl -? describes the options
|
|
|
|
CC = cl -G5 -GF $(OPTIMIZE) -W3 -nologo
|
|
|
|
|
|
|
|
LDFLAGS = /link $(LINKDEBUG)
|
|
|
|
|
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
|
|
|
|
|
2002-01-05 19:07:13 +00:00
|
|
|
CFLAGS = -FImsvc_recommended_pragmas.h -I . -I .. \
|
|
|
|
$(GLIB_CFLAGS) $(PANGO_CFLAGS) -I ../gdk-pixbuf \
|
2001-11-09 21:52:52 +00:00
|
|
|
$(G_DEBUGGING) -DHAVE_CONFIG_H -DGDK_ENABLE_BROKEN -DGDK_VERSION=\"$(GTK_VER)\"
|
2000-10-09 19:49:42 +00:00
|
|
|
EXTRALIBS = $(WTKIT)\lib\i386\wntab32x.lib $(GLIB_LIBS) \
|
|
|
|
..\gdk-pixbuf\gdk_pixbuf-$(GDK_PIXBUF_VER).lib $(PANGOWIN32_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 \
|
2001-07-28 23:02:02 +00:00
|
|
|
gdk-win32-backend \
|
2001-02-19 21:54:04 +00:00
|
|
|
gdk-win32-$(GTK_VER).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 \
|
|
|
|
gdkcolor.obj \
|
2000-02-03 01:19:03 +00:00
|
|
|
gdkcursor.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 \
|
|
|
|
gdkfont.obj \
|
|
|
|
gdkgc.obj \
|
|
|
|
gdkglobals.obj \
|
|
|
|
gdkimage.obj \
|
2000-12-14 23:14:18 +00:00
|
|
|
gdkkeys.obj \
|
2000-10-09 19:49:42 +00:00
|
|
|
gdkkeyuni.obj \
|
|
|
|
gdkpango.obj \
|
2001-02-19 21:54:04 +00:00
|
|
|
gdkpixbuf-drawable.obj \
|
2000-10-09 19:49:42 +00:00
|
|
|
gdkpixbuf-render.obj \
|
2001-02-19 21:54:04 +00:00
|
|
|
gdkpixmap.obj \
|
2000-10-09 19:49:42 +00:00
|
|
|
gdkpolyreg-generic.obj \
|
1999-12-11 23:41:46 +00:00
|
|
|
gdkrectangle.obj \
|
2001-02-19 21:54:04 +00:00
|
|
|
gdkregion-generic.obj \
|
|
|
|
gdkrgb.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 \
|
|
|
|
gdkfont.h \
|
|
|
|
gdkgc.h \
|
|
|
|
gdkkeysyms.h \
|
|
|
|
gdki18n.h \
|
|
|
|
gdkimage.h \
|
|
|
|
gdkinput.h \
|
|
|
|
gdkkeys.h \
|
|
|
|
gdkpango.h \
|
|
|
|
gdkpixbuf.h \
|
|
|
|
gdkpixmap.h \
|
|
|
|
gdkproperty.h \
|
|
|
|
gdkregion.h \
|
|
|
|
gdkrgb.h \
|
|
|
|
gdkselection.h \
|
|
|
|
gdktypes.h \
|
|
|
|
gdkvisual.h \
|
|
|
|
gdkwindow.h \
|
|
|
|
|
|
|
|
gdkenumtypes.h: $(gdk_public_h_sources) makeenums.pl
|
|
|
|
$(PERL) makeenums.pl include $(gdk_public_h_sources) > gdkenumtypes.h
|
|
|
|
|
|
|
|
gdkenumtypes.c: $(gdk_public_h_sources) makeenums.pl
|
|
|
|
$(PERL) makeenums.pl cfile $(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
|
|
|
|
|
2001-02-19 21:54:04 +00:00
|
|
|
gdk-win32-$(GTK_VER).dll : $(gdk_OBJECTS) gdk.def win32\gdk-win32.lib
|
|
|
|
$(CC) $(CFLAGS) -LD -Fegdk-win32-$(GTK_VER).dll $(gdk_OBJECTS) win32\gdk-win32.lib $(EXTRALIBS) gdi32.lib user32.lib imm32.lib shell32.lib ole32.lib uuid.lib win32\gdk.res $(LDFLAGS) /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
|
|
|
|
|
2001-02-19 21:54:04 +00:00
|
|
|
testgdk.exe : gdk-win32-$(GTK_VER).dll testgdk.obj
|
|
|
|
$(CC) -Fetestgdk.exe testgdk.obj gdk-win32-$(GTK_VER).lib $(EXTRALIBS) $(LDFLAGS)
|
1999-12-11 23:41:46 +00:00
|
|
|
|
|
|
|
.c.obj :
|
|
|
|
$(CC) $(CFLAGS) -GD -c -DGDK_COMPILATION -DG_LOG_DOMAIN=\"Gdk\" $<
|
|
|
|
|
2001-02-19 21:54:04 +00:00
|
|
|
clean::
|
1999-12-11 23:41:46 +00:00
|
|
|
del *.dll
|
|
|
|
del *.obj
|
|
|
|
del *.lib
|
|
|
|
del *.err
|
|
|
|
del *.res
|