summaryrefslogtreecommitdiff
path: root/gtk/makefile.cygwin
blob: f3ef0b2b3d9ce38dca0243171feb58002cdafccf (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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
## Makefile for building the GTK DLL with gcc-2.95 or later on cygwin
## Use: make -f makefile.cygwin

## There is no install target, you have to decide where and 
## how to install for yourself.

# This is the location of pthreads for Win32, 
# see http://sourceware.cygnus.com/pthreads-win32/
PTHREADS = ../../pthreads-snap-1999-05-30
PTHREAD_LIB = -L $(PTHREADS) -lpthread
PTHREAD_INC = -I $(PTHREADS)

OPTIMIZE = -g -O

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

# Nothing much configurable below

CC = gcc -mno-cygwin -mpentium -fnative-struct

# Perl and awk are needed to generate some source files.
# These generated source files are distribuyted with the Win32 GTk+ source
# distributions, so don't worry if you don't have perl and awk.
PERL = perl
AWK = awk

GLIB_VER=1.3
GTK_VER=1.3

GLIB = ../../glib
INTL = ../../intl

CFLAGS = $(OPTIMIZE) -I . -I .. -I ../gdk -I $(GLIB) -I $(GLIB)/gmodule -I $(INTL) -DGTK_DISABLE_COMPAT_H

all : \
	../config.h	\
	gtkcompat.h	\
	generated	\
	gtk-$(GTK_VER).dll\
	testdnd.exe	\
	testgtk.exe	\
	testinput.exe	\
	testrgb.exe	\
	testselection.exe \
	simple.exe

gtk_OBJECTS = \
	fnmatch.o	\
	gtkaccelgroup.o \
	gtkaccellabel.o \
	gtkadjustment.o \
	gtkalignment.o	\
	gtkarg.o	\
	gtkarrow.o	\
	gtkaspectframe.o\
	gtkbbox.o	\
	gtkbin.o	\
	gtkbindings.o	\
	gtkbox.o	\
	gtkbutton.o	\
	gtkcalendar.o	\
	gtkcheckbutton.o\
	gtkcheckmenuitem.o\
	gtkclist.o	\
	gtkcolorsel.o	\
	gtkcombo.o	\
	gtkcontainer.o	\
	gtkctree.o	\
	gtkcurve.o	\
	gtkdata.o	\
	gtkdialog.o	\
	gtkdnd.o	\
	gtkdrawingarea.o\
	gtkeditable.o	\
	gtkentry.o	\
	gtkeventbox.o	\
	gtkfilesel.o	\
	gtkfixed.o	\
	gtkfontsel.o	\
	gtkframe.o	\
	gtkgamma.o	\
	gtkgc.o		\
	gtkhandlebox.o	\
	gtkhbbox.o	\
	gtkhbox.o	\
	gtkhpaned.o	\
	gtkhruler.o	\
	gtkhscale.o	\
	gtkhscrollbar.o \
	gtkhseparator.o \
	gtkimage.o	\
	gtkinputdialog.o\
	gtkinvisible.o	\
	gtkitem.o	\
	gtkitemfactory.o\
	gtklabel.o	\
	gtklayout.o	\
	gtklist.o	\
	gtklistitem.o	\
	gtkmain.o	\
	gtkmarshal.o	\
	gtkmenu.o	\
	gtkmenubar.o	\
	gtkmenufactory.o\
	gtkmenuitem.o	\
	gtkmenushell.o	\
	gtkmisc.o	\
	gtknotebook.o	\
	gtkobject.o	\
	gtkoptionmenu.o \
	gtkpacker.o	\
	gtkpaned.o	\
	gtkpixmap.o	\
	gtkplug.o	\
	gtkpreview.o	\
	gtkprogress.o	\
	gtkprogressbar.o\
	gtkradiobutton.o\
	gtkradiomenuitem.o\
	gtkrange.o	\
	gtkrc.o		\
	gtkruler.o	\
	gtkscale.o	\
	gtkscrollbar.o	\
	gtkscrolledwindow.o\
	gtkselection.o	\
	gtkseparator.o	\
	gtksignal.o	\
	gtksocket.o	\
	gtkspinbutton.o \
	gtkstatusbar.o	\
	gtkstyle.o	\
	gtktable.o	\
	gtktearoffmenuitem.o\
	gtktext.o	\
	gtkthemes.o	\
	gtktipsquery.o	\
	gtktogglebutton.o\
	gtktoolbar.o	\
	gtktooltips.o	\
	gtktree.o	\
	gtktreeitem.o	\
	gtktypeutils.o	\
	gtkvbbox.o	\
	gtkvbox.o	\
	gtkviewport.o	\
	gtkvpaned.o	\
	gtkvruler.o	\
	gtkvscale.o	\
	gtkvscrollbar.o \
	gtkvseparator.o \
	gtkwidget.o	\
	gtkwindow.o

# Source headers which are non-autogenerated headers
source_headers = \
	gtk.h			\
	gtkaccelgroup.h		\
	gtkaccellabel.h		\
	gtkadjustment.h		\
	gtkalignment.h		\
	gtkarg.h		\
	gtkarrow.h		\
	gtkaspectframe.h	\
	gtkbin.h		\
	gtkbindings.h		\
	gtkbbox.h		\
	gtkbox.h		\
	gtkbutton.h		\
	gtkcalendar.h		\
	gtkcheckbutton.h	\
	gtkcheckmenuitem.h	\
	gtkclist.h		\
	gtkcolorsel.h		\
	gtkcombo.h		\
	gtkcontainer.h		\
	gtkctree.h		\
	gtkcurve.h		\
	gtkdata.h		\
	gtkdebug.h              \
	gtkdialog.h		\
	gtkdnd.h		\
	gtkdrawingarea.h	\
	gtkeditable.h           \
	gtkentry.h		\
	gtkenums.h		\
	gtkeventbox.h		\
	gtkfilesel.h		\
	gtkfixed.h		\
	gtkfontsel.h		\
	gtkframe.h		\
	gtkgamma.h		\
	gtkgc.h			\
	gtkhandlebox.h		\
	gtkhbbox.h		\
	gtkhbox.h		\
	gtkhpaned.h		\
	gtkhruler.h		\
	gtkhscale.h		\
	gtkhscrollbar.h		\
	gtkhseparator.h		\
	gtkimage.h		\
	gtkinputdialog.h	\
	gtkinvisible.h		\
	gtkitem.h		\
	gtkitemfactory.h	\
	gtklabel.h		\
	gtklayout.h             \
	gtklist.h		\
	gtklistitem.h		\
	gtkmain.h		\
	gtkmenu.h		\
	gtkmenubar.h		\
	gtkmenufactory.h	\
	gtkmenuitem.h		\
	gtkmenushell.h		\
	gtkmisc.h		\
	gtknotebook.h		\
	gtkobject.h		\
	gtkoptionmenu.h		\
	gtkpacker.h		\
	gtkpaned.h		\
	gtkpixmap.h		\
	gtkplug.h		\
	gtkpreview.h		\
	gtkprivate.h		\
	gtkprogress.h		\
	gtkprogressbar.h	\
	gtkradiobutton.h	\
	gtkradiomenuitem.h	\
	gtkrange.h		\
	gtkrc.h			\
	gtkruler.h		\
	gtkscale.h		\
	gtkscrollbar.h		\
	gtkscrolledwindow.h	\
	gtkselection.h		\
	gtkseparator.h		\
	gtksignal.h		\
	gtksocket.h		\
	gtkspinbutton.h		\
	gtkstyle.h		\
	gtkstatusbar.h		\
	gtktable.h		\
	gtktearoffmenuitem.h    \
	gtktext.h		\
	gtkthemes.h		\
	gtktipsquery.h		\
	gtktogglebutton.h	\
	gtktoolbar.h		\
	gtktooltips.h		\
	gtktree.h		\
	gtktreeitem.h		\
	gtktypeutils.h		\
	gtkvbbox.h		\
	gtkvbox.h		\
	gtkviewport.h		\
	gtkvpaned.h		\
	gtkvruler.h		\
	gtkvscale.h		\
	gtkvscrollbar.h		\
	gtkvseparator.h		\
	gtkwidget.h		\
	gtkwindow.h

# More headers to use when autogenerating.
gdk_headers = \
	../gdk/gdkcc.h		\
	../gdk/gdkcolor.h	\
	../gdk/gdkcursor.h     	\
	../gdk/gdkdnd.h		\
	../gdk/gdkdrawable.h	\
	../gdk/gdkevents.h	\
	../gdk/gdkfont.h	\
	../gdk/gdkgc.h		\
	../gdk/gdkim.h		\
	../gdk/gdkimage.h	\
	../gdk/gdkinput.h	\
	../gdk/gdkpixmap.h	\
	../gdk/gdkproperty.h	\
	../gdk/gdkregion.h	\
	../gdk/gdkrgb.h		\
	../gdk/gdkselection.h	\
	../gdk/gdktypes.h	\
	../gdk/gdkvisual.h	\
	../gdk/gdkwindow.h

../config.h : ../config.h.win32
	cp ../config.h.win32 ../config.h

gtkcompat.h : gtkcompat.h.win32
	cp gtkcompat.h.win32 gtkcompat.h

#
# Generated source files:
#
generated : gtk.defs gtktypebuiltins.h gtktypebuiltins_vars.c gtktypebuiltins_ids.c gtktypebuiltins_evals.c gtkmarshal.h gtkmarshal.c

gtk.defs : makeenums.pl gtk-boxed.defs $(source_headers) $(gdk_headers)
	$(PERL) makeenums.pl defs $(source_headers) $(gdk_headers) >gd.tmp
	cat gd.tmp gtk-boxed.defs >gtk.defs
	rm gd.tmp

# generate type identifier header (GTK_TYPE_WIDGET_FLAGS)
gtktypebuiltins.h: gtk.defs maketypes.awk
	$(AWK) -f maketypes.awk gtk.defs macros >gtktypebuiltins.h

# generate type identifier variables (GTK_TYPE_WIDGET_FLAGS)
gtktypebuiltins_vars.c: gtk.defs maketypes.awk
	$(AWK) -f maketypes.awk gtk.defs variables >gtktypebuiltins_vars.c

# generate type entries for type-id registration
gtktypebuiltins_ids.c: gtk.defs maketypes.awk
	$(AWK) -f maketypes.awk gtk.defs entries >gtktypebuiltins_ids.c

# generate enum value arrays
gtktypebuiltins_evals.c: makeenums.pl gtk.defs
	$(PERL) makeenums.pl arrays $(source_headers) $(gdk_headers) >gtktypebuiltins_evals.c

gtkmarshal.h gtkmarshal.c : gtkmarshal.list genmarshal.pl
	$(PERL) genmarshal.pl
	-rm gtkmarshal.c
	mv s-gmc gtkmarshal.c
	-rm gtkmarshal.h
	mv s-gmh gtkmarshal.h

#
# Linking:
#
gtk-$(GTK_VER).dll : generated $(gtk_OBJECTS) gtk.def
	$(GLIB)/build-dll gtk $(GTK_VER) gtk.def $(gtk_OBJECTS) -L ../gdk -lgdk-$(GTK_VER) -L$(INTL) -lgnu-intl -L $(GLIB) -lglib-$(GLIB_VER) -lgmodule-$(GLIB_VER) -lgdi32 -luser32

.SUFFIXES: .c .o .i

# General rule for compiling the objects into the DLL
.c.o :
	$(CC) $(CFLAGS) -c -DGTK_COMPILATION -DG_LOG_DOMAIN=\"Gtk\" $<

.c.i :
	$(CC) $(CFLAGS) -E -DGDK_COMPILATION -DG_LOG_DOMAIN=\"Gdk\" $< >$@

#
# Test programs:
#
testdnd.exe : testdnd.o
	$(CC) $(CFLAGS) -o $@ testdnd.o -L . -lgtk-$(GTK_VER) -L ../gdk -lgdk-$(GTK_VER) -L $(GLIB) -lglib-$(GLIB_VER) $(LDFLAGS)

# Must have separate rules for these objects that don't go in the DLL
testdnd.o : testdnd.c
	$(CC) $(CFLAGS) -c -DG_LOG_DOMAIN=\"testdnd\" testdnd.c

testgtk.exe : testgtk.o
	$(CC) $(CFLAGS) -o $@  testgtk.o -L . -lgtk-$(GTK_VER) -L ../gdk -lgdk-$(GTK_VER) -L $(GLIB) -lglib-$(GLIB_VER) $(LDFLAGS)

testgtk.o : testgtk.c
	$(CC) $(CFLAGS) -c -DG_LOG_DOMAIN=\"testgtk\" testgtk.c

testinput.exe : testinput.o
	$(CC) $(CFLAGS) -o $@  testinput.o -L . -lgtk-$(GTK_VER) -L ../gdk -lgdk-$(GTK_VER) -L $(GLIB) -lglib-$(GLIB_VER) $(LDFLAGS)

testinput.o : testinput.c
	$(CC) $(CFLAGS) -c -DG_LOG_DOMAIN=\"testinput\" testinput.c

testrgb.exe : testrgb.o
	$(CC) $(CFLAGS) -o $@  testrgb.o -L . -lgtk-$(GTK_VER) -L ../gdk -lgdk-$(GTK_VER) -L $(GLIB) -lglib-$(GLIB_VER) $(LDFLAGS)

testrgb.o : testrgb.c
	$(CC) $(CFLAGS) -c -DG_LOG_DOMAIN=\"testrgb\" testrgb.c

testselection.exe : testselection.o
	$(CC) $(CFLAGS) -o $@  testselection.o -L . -lgtk-$(GTK_VER) -L ../gdk -lgdk-$(GTK_VER) -L $(GLIB) -lglib-$(GLIB_VER) $(LDFLAGS)

testselection.o : testselection.c
	$(CC) $(CFLAGS) -c -DG_LOG_DOMAIN=\"testselection\" testselection.c

testthreads.exe : testthreads.o
	$(CC) $(CFLAGS) -o $@  testthreads.o -L . -lgtk-$(GTK_VER) -L ../gdk -lgdk-$(GTK_VER) -L $(GLIB) -lglib-$(GLIB_VER) -lgthread-$(GLIB_VER) $(PTHREAD_LIB) $(LDFLAGS)

testthreads.o : testthreads.c
	$(CC) $(CFLAGS) -I$(PTHREAD_INC) -c -DG_LOG_DOMAIN=\"testthreads\" -DUSE_PTHREADS=1 testthreads.c

simple.exe : simple.o
	$(CC) $(CFLAGS) -o $@  simple.o -L . -lgtk-$(GTK_VER) -L ../gdk -lgdk-$(GTK_VER) -L $(GLIB) -lglib-$(GLIB_VER) $(LDFLAGS)

simple.o : simple.c
	$(CC) $(CFLAGS) -c -DG_LOG_DOMAIN=\"simple\" simple.c

# The clean target doesn't remove the generated sources
clean:
	-rm *.exe *.o *.dll *.a *.exp *.base