mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 03:10:09 +00:00
6ffe1dcf10
2000-09-07 Tor Lillqvist <tml@iki.fi> * gdk/win32/makefile.mingw.in: Use -Wall. Add gdkpango-win32.o * gdk/win32/gdkwin32.h: Add more definitions missing from the free w32api headers. * gdk/win32/gdkprivate-win32.h: Add a couple of missing declarations. * gdk/win32/gdkdrawable-win32.c: Remove gcc -Wall warnings. (gdk_win32_get_colormap): A line had been deleted by mistake. * gdk/win32/gdkevents-win32.c: Remove lint (gcc -Wall) here, too. (gdk_event_translate): Handle more virtual keycodes to be able to generate GDK events for Control-comma, Control-period, etc. * gtk/gtk.def: Add some missing entry points. 2000-09-07 Tor Lillqvist <tml@iki.fi> * makefile.mingw.in: Use own version number for gdk-pixbuf DLLs, like on Unix.
90 lines
2.3 KiB
Plaintext
90 lines
2.3 KiB
Plaintext
## Makefile for building the Win32 dependent GDK objects with gcc on Win32
|
|
## Use: make -f makefile.mingw
|
|
|
|
TOP = ../../..
|
|
|
|
# Location of the Wintab toolkit. Downloadable from
|
|
# http://www.pointing.com. We use the wntab32x.lib archive library
|
|
# directly (copying it to libwntab32x.a).
|
|
WTKIT = $(TOP)/wtkit126
|
|
|
|
include ../../build/win32/make.mingw
|
|
|
|
# Possibly override GTK+ version from build/win32/module.defs
|
|
GTK_VER = @GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@
|
|
|
|
OPTIMIZE = -g -Wall
|
|
|
|
INCLUDES = -I ../.. -I .. -I $(WTKIT)/include
|
|
DEPCFLAGS = $(GLIB_CFLAGS) $(PANGO_CFLAGS)
|
|
DEFINES = -DG_ENABLE_DEBUG -DHAVE_CONFIG_H -DGDK_VERSION=\"$(GTK_VER)\" -DGDK_COMPILATION
|
|
|
|
all: \
|
|
../../config.h \
|
|
../gdkconfig.h \
|
|
libgdk-win32.a \
|
|
gdk-win32res.o \
|
|
libwntab32x.a
|
|
|
|
gdk_win32_OBJECTS = \
|
|
gdkcc-win32.o \
|
|
gdkcolor-win32.o \
|
|
gdkcursor-win32.o \
|
|
gdkdnd-win32.o \
|
|
gdkdrawable-win32.o \
|
|
gdkevents-win32.o \
|
|
gdkfont-win32.o \
|
|
gdkgc-win32.o \
|
|
gdkgeometry-win32.o \
|
|
gdkglobals-win32.o \
|
|
gdkim-win32.o \
|
|
gdkimage-win32.o \
|
|
gdkinput.o \
|
|
gdkinput-win32.o \
|
|
gdkmain-win32.o \
|
|
gdkpango-win32.o \
|
|
gdkpixmap-win32.o \
|
|
gdkproperty-win32.o \
|
|
gdkselection-win32.o \
|
|
gdkvisual-win32.o \
|
|
gdkwin32id.o \
|
|
gdkwindow-win32.o
|
|
|
|
../../config.h : ../../config.h.win32
|
|
cp $< $@
|
|
|
|
../gdkconfig.h : ../gdkconfig.h.win32
|
|
cp $< $@
|
|
|
|
gdk-win32res.o : rc/gdk.rc gdk-build.tmp
|
|
m4 -DBUILDNUMBER=`cat gdk-build.tmp` <rc/gdk.rc >gdk-win32res.rc
|
|
windres --include-dir rc gdk-win32res.rc gdk-win32res.o
|
|
rm gdk-build.tmp gdk-win32res.rc
|
|
|
|
# The *.stamp files aren't distributed. Thus, this takes care of only
|
|
# tml building libraries with nonzero build number.
|
|
|
|
ifeq ($(wildcard gdk-build.stamp),gdk-build.stamp)
|
|
# Magic to bump the build number
|
|
gdk-build.tmp :
|
|
bash -c "read number && echo $$[number+1]" <gdk-build.stamp >gdk-build.tmp
|
|
cp gdk-build.tmp gdk-build.stamp
|
|
else
|
|
# Use zero as build number.
|
|
gdk-build.tmp :
|
|
echo 0 >gdk-build.tmp
|
|
endif
|
|
|
|
libgdk-win32.a : $(gdk_win32_OBJECTS)
|
|
-rm -f $@
|
|
$(AR) rv $@ $(gdk_win32_OBJECTS)
|
|
|
|
libwntab32x.a : $(WTKIT)/lib/i386/wntab32x.lib
|
|
cp $< $@
|
|
|
|
# Hack to get an updated makefile.mingw automatically after updating
|
|
# makefile.mingw.in. Only for developer use.
|
|
makefile.mingw: makefile.mingw.in
|
|
sed -e 's,@GTK_MAJOR[_]VERSION@,@GTK_MAJOR_VERSION@,' \
|
|
-e 's,@GTK_MINOR[_]VERSION@,@GTK_MINOR_VERSION@,' <$< >$@
|