summaryrefslogtreecommitdiff
path: root/gdk/win32/makefile.cygwin
blob: 876572b28cbd3a2b84bc6f408d52148b790863ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
## Makefile for building the GDK DLL with egcs on cygwin
## Use: make -f makefile.cygwin install

# Change this to wherever you want to install the DLL. This directory
# should be in your PATH.
BIN = bin

# Location of the Wintab toolkit. Downloadable from http://www.pointing.com.
# We use the wntab32x.lib archive library directly (copy it as libwntab32x.a).
WTKIT = ../../../wtkit126

OPTIMIZE = -g -O

################################################################

# Nothing much configurable below

CC = gcc -mno-cygwin -mpentium

CP = cp
LD = ld
INSTALL = install

GLIB_VER=1.3
GTK_VER=1.3

GLIB = ../../../glib
CFLAGS = -g -I. -I../.. -I$(WTKIT)/include -I$(GLIB) -DG_ENABLE_DEBUG -DHAVE_CONFIG_H -DGDK_VERSION=\"$(GTK_VER)\" -DNEAR= -DFAR=

all: \
	gdk/gdkprivate.h \
	gdk/gdkx.h	\
	../../config.h	\
	gdk-$(GTK_VER).gcc.dll

install : all
	$(INSTALL) gdk-$(GTK_VER).gcc.dll $(BIN)

gdk_OBJECTS = \
	gdk.o		\
	gdkcc.o		\
	gdkcolor.o	\
	gdkcursor.o	\
	gdkdnd.o	\
	gdkdraw.o	\
	gdkevents.o	\
	gdkfont.o	\
	gdkgc.o		\
	gdkglobals.o	\
	gdkim.o		\
	gdkimage.o	\
	gdkinput.o	\
	gdkpixmap.o	\
	gdkproperty.o	\
	gdkrgb.o	\
	gdkrectangle.o	\
	gdkregion.o	\
	gdkselection.o	\
	gdkvisual.o	\
	gdkwindow.o	\
	gdkxid.o

# We must have copies of gdkx.h and gdkprivate.h in the gdk
# subdirectory, so that application sources which want to be
# compilable with both GTk+ 1.2 (where there are no separate backend
# gdk directories) and this 1.3 version (where the Win32 backend is in
# the directory of *this* file you are reading right now) can use
# #include <gdk/gdkprivate.h>.

# Applications that depend on GTk+ 1.3 or later should include
# gdkprivate.h and gdkx.h without the gdk/ prefix. The CFLAGS should
# include an -I switch pointing to the backend-specific directory
# (*this* directory in the Win32 case).

gdk/gdkprivate.h : gdkprivate.h
	-mkdir gdk
	cp gdkprivate.h gdk

gdk/gdkx.h : gdkx.h
	-mkdir gdk
	cp gdkx.h gdk

../../config.h : ../../config.h.win32
	$(CP) ../../config.h.win32 ../../config.h

gdkres.o : rc/gdk.rc
	windres --include-dir rc rc/gdk.rc gdkres.o

gdk-$(GTK_VER).gcc.dll : $(gdk_OBJECTS) gdk.def gdkres.o libwntab32x.a
	$(GLIB)/build-dll gdk $(GTK_VER).gcc gdk.def $(gdk_OBJECTS) -L $(GLIB) -lglib-$(GLIB_VER).gcc -L . -lwntab32x -lgdi32 -luser32 -lshell32 -lole32 -luuid $(LDFLAGS) gdkres.o

libwntab32x.a : $(WTKIT)/lib/i386/wntab32x.lib
	cp $(WTKIT)/lib/i386/wntab32x.lib libwntab32x.a

.c.o :
	$(CC) $(CFLAGS) -c -DGDK_COMPILATION -DG_LOG_DOMAIN=\"Gdk\" $<

gdkrgb.c : ../gdkrgb.c
	$(CP) ../gdkrgb.c .

gdkrectangle.c : ../gdkrectangle.c
	$(CP) ../gdkrectangle.c .

clean:
	-rm *.exe *.o *.dll *.a *.exp *.base