]> git.saurik.com Git - wxWidgets.git/blame - distrib/msw/tmake/wat.t
Misc small fixes
[wxWidgets.git] / distrib / msw / tmake / wat.t
CommitLineData
f2071dda
VZ
1#!#############################################################################
2#! File: wat.t
3#! Purpose: tmake template file from which makefile.wat is generated by running
4#! tmake -t wat wxwin.pro -o makefile.wat
4d85bcd1 5#! TODO:
0cdf89ab 6#! - extended.c, unzip.c must be compiled with $(CC), not $(CCC).
4d85bcd1
JS
7#! - extended.c, unzip.c targets must be as per b32.t etc.
8#! - OLE files not generated correctly (need 'ole/' directory)
f2071dda
VZ
9#! Author: Vadim Zeitlin
10#! Created: 14.07.99
11#! Version: $Id$
12#!#############################################################################
f2071dda
VZ
13#${
14 #! include the code which parses filelist.txt file and initializes
15 #! %wxCommon, %wxGeneric and %wxMSW hashes.
16 IncludeTemplate("filelist.t");
17
18 #! now transform these hashes into $project tags
19 foreach $file (sort keys %wxGeneric) {
20 my $tag = "";
21 if ( $wxGeneric{$file} =~ /\b(PS|G|16|U)\b/ ) {
22 $tag = "WXNONESSENTIALOBJS";
23 }
24 else {
25 $tag = "WXGENERICOBJS";
26 }
27
28 $file =~ s/cp?p?$/obj/;
29 $project{$tag} .= $file . " "
30 }
31
32 foreach $file (sort keys %wxCommon) {
33 #! doesn't compile, apparently
34 next if $file =~ /^imagjpeg\./;
35
d98fcc00 36 $isCFile = $file =~ /\.c$/;
f2071dda 37 $file =~ s/cp?p?$/obj/;
d98fcc00
VZ
38 $project{"WXCOMMONOBJS"} .= $file . " ";
39 $project{"WXCOBJS"} .= $file . " " if $isCFile;
f2071dda
VZ
40 }
41
42 foreach $file (sort keys %wxMSW) {
43 #! these files don't compile
44 next if $file =~ /^pnghand\./;
45
a925b006 46#! next if $wxGeneric{$file} =~ /\b16\b/;
f2071dda 47
d98fcc00
VZ
48 my $isOleObj = $wxMSW{$file} =~ /\bO\b/;
49 my $isCFile = $file =~ /\.c$/;
f2071dda 50 $file =~ s/cp?p?$/obj/;
d98fcc00
VZ
51 $project{"WXMSWOBJS"} .= $file . " ";
52 $project{"WXCOBJS"} .= $file . " " if $isCFile;
53 $project{"WXOLEOBJS"} .= $file . " " if $isOleObj
f2071dda
VZ
54 }
55#$}
d98fcc00
VZ
56#! an attempt to embed '#' directly in the string somehow didn't work...
57#$ $text = chr(35) . '!/binb/wmake.exe';
f2071dda
VZ
58
59# This file was automatically generated by tmake at #$ Now()
60# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE WAT.T!
61
f2071dda
VZ
62#
63# File: makefile.wat
64# Author: Julian Smart
65# Created: 1998
66#
67# Makefile : Builds wxWindows library for Watcom C++, WIN32
ace03f87
JS
68#
69# NOTE: This file is generated from wat.t by tmake, but not all bugs have
70# been removed from this process. If wxWindows doesn't compile,
71# check the following and edit this makefile accordingly:
72#
73# - OLE-related files such as oleutils.cpp should have 'ole\' prepended
74# to the path.
75# - extended.c, gsocket.c, unzip.c must be compiled using $(CC), not $(CCC).
76# They may also be wrongly specified as extended.cpp, etc.
f2071dda
VZ
77
78WXDIR = ..\..
79
80!include $(WXDIR)\src\makewat.env
81
82WXLIB = $(WXDIR)\lib
83
84LIBTARGET = $(WXLIB)\wx.lib
85DUMMY=dummydll
86# ODBCLIB = ..\..\contrib\odbc\odbc32.lib
87
88EXTRATARGETS = xpm png zlib
89EXTRATARGETSCLEAN = clean_xpm clean_png clean_zlib
90GENDIR=$(WXDIR)\src\generic
91COMMDIR=$(WXDIR)\src\common
92XPMDIR=$(WXDIR)\src\xpm
f2071dda 93MSWDIR=$(WXDIR)\src\msw
d98fcc00 94OLEDIR=$(MSWDIR)\ole
f2071dda
VZ
95
96DOCDIR = $(WXDIR)\docs
97
98GENERICOBJS= #$ ExpandGlue("WXGENERICOBJS", "", " &\n\t")
99
100# These are generic things that don't need to be compiled on MSW,
101# but sometimes it's useful to do so for testing purposes.
102NONESSENTIALOBJS= #$ ExpandGlue("WXNONESSENTIALOBJS", "", " &\n\t")
103
104COMMONOBJS = &
105 y_tab.obj &
106 #$ ExpandGlue("WXCOMMONOBJS", "", " &\n\t")
107
108MSWOBJS = #$ ExpandGlue("WXMSWOBJS", "", " &\n\t")
109
110# Add $(NONESSENTIALOBJS) if wanting generic dialogs, PostScript etc.
111OBJECTS = $(COMMONOBJS) $(GENERICOBJS) $(MSWOBJS)
112
113all: $(OBJECTS) $(LIBTARGET) $(EXTRATARGETS)
114
115$(LIBTARGET) : $(OBJECTS)
116 %create tmp.lbc
117 @for %i in ( $(OBJECTS) ) do @%append tmp.lbc +%i
118 wlib /b /c /n /p=512 $^@ @tmp.lbc
119
120#test : $(OBJECTS)
121# %create tmp.lbc
122# @for %i in ( $(OBJECTS) ) do @%append tmp.lbc +%i
123# wlib /b /c /n /p=512 $^@ @tmp.lbc
9be9b974
RD
124
125
f2071dda
VZ
126clean: .SYMBOLIC $(EXTRATARGETSCLEAN)
127 -erase *.obj
128 -erase $(LIBTARGET)
129 -erase *.pch
130 -erase *.err
131 -erase *.lbc
132
133cleanall: clean
134
135#${
136 $_ = $project{"WXMSWOBJS"};
137 my @objs = split;
138 foreach (@objs) {
139 $text .= $_ . ': $(';
140 s/\.obj$//;
d98fcc00 141 if ( $project{"WXOLEOBJS"} =~ /\b\Q$_\E\b/ ) {
f2071dda
VZ
142 $text .= 'OLEDIR)\\';
143 } else {
144 $text .= 'MSWDIR)\\';
145 }
d98fcc00
VZ
146 my $suffix, $cc;
147 if ( $project{"WXCOBJS"} =~ /\b\Q$_\E\b/ ) {
148 $suffix = "c";
149 $cc="CC";
150 }
151 else {
152 $suffix = "cpp";
153 $cc="CCC";
154 }
155 $text .= $_ . ".$suffix\n" .
156 " *\$($cc) \$(CPPFLAGS) \$(IFLAGS) \$<" . "\n\n";
f2071dda
VZ
157 }
158#$}
159
160########################################################
161# Common objects (always compiled)
162
163#${
164 $_ = $project{"WXCOMMONOBJS"};
165 my @objs = split;
166 foreach (@objs) {
167 $text .= $_;
168 s/\.obj$//;
169 $text .= ': $(COMMDIR)\\';
d98fcc00
VZ
170 my $suffix, $cc;
171 if ( $project{"WXCOBJS"} =~ /\b\Q$_\E\b/ ) {
172 $suffix = "c";
173 $cc="CC";
174 }
175 else {
176 $suffix = "cpp";
177 $cc="CCC";
178 }
179 $text .= $_ . ".$suffix\n" .
180 " *\$($cc) \$(CPPFLAGS) \$(IFLAGS) \$<" . "\n\n";
f2071dda
VZ
181 }
182#$}
183
184y_tab.obj: $(COMMDIR)\y_tab.c $(COMMDIR)\lex_yy.c
185 *$(CC) $(CPPFLAGS) $(IFLAGS) -DUSE_DEFINE $(COMMDIR)\y_tab.c
186
187# *$(CC) $(CPPFLAGS) $(IFLAGS) -DUSE_DEFINE -DYY_USE_PROTOS $(COMMDIR)\y_tab.c
188
189$(COMMDIR)\y_tab.c: $(COMMDIR)\dosyacc.c
190 copy $(COMMDIR)\dosyacc.c $(COMMDIR)\y_tab.c
191
192$(COMMDIR)\lex_yy.c: $(COMMDIR)\doslex.c
193 copy $(COMMDIR)\doslex.c $(COMMDIR)\lex_yy.c
194
195########################################################
196# Generic objects (not always compiled, depending on
197# whether platforms have native implementations)
198
199#${
200 $_ = $project{"WXGENERICOBJS"};
201 my @objs = split;
202 foreach (@objs) {
203 $text .= $_;
204 s/\.obj$//;
205 $text .= ': $(GENDIR)\\';
206 $text .= $_ . ".cpp\n" .
207 ' *$(CCC) $(CPPFLAGS) $(IFLAGS) $<' . "\n\n";
208 }
209#$}
210
211crbuffri.obj: $(XPMDIR)\crbuffri.c
212 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
213
214crbuffrp.obj: $(XPMDIR)\crbuffrp.c
215 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
216
217crdatfri.obj: $(XPMDIR)\crdatfri.c
218 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
219
220crdatfrp.obj: $(XPMDIR)\crdatfrp.c
221 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
222
223create.obj: $(XPMDIR)\create.c
224 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
225
226crifrbuf.obj: $(XPMDIR)\crifrbuf.c
227 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
228
229crifrdat.obj: $(XPMDIR)\crifrdat.c
230 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
231
232crpfrbuf.obj: $(XPMDIR)\crpfrbuf.c
233 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
234
235crpfrdat.obj: $(XPMDIR)\crpfrdat.c
236 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
237
238# TODO: what to do about this clash of filename????
239#data.obj: $(XPMDIR)\data.c
240# *$(CC) $(CPPFLAGS) $(IFLAGS) $<
241
242hashtab.obj: $(XPMDIR)\hashtab.c
243 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
244
245misc.obj: $(XPMDIR)\misc.c
246 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
247
248parse.obj: $(XPMDIR)\parse.c
249 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
250
251rdftodat.obj: $(XPMDIR)\rdftodat.c
252 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
253
254rdftoi.obj: $(XPMDIR)\rdftoi.c
255 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
256
257rdftop.obj: $(XPMDIR)\rdftop.c
258 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
259
260rgb.obj: $(XPMDIR)\rgb.c
261 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
262
263scan.obj: $(XPMDIR)\scan.c
264 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
265
266simx.obj: $(XPMDIR)\simx.c
267 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
268
269wrffrdat.obj: $(XPMDIR)\wrffrdat.c
270 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
271
272wrffri.obj: $(XPMDIR)\wrffri.c
273 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
274
275wrffrp.obj: $(XPMDIR)\wrffrp.c
276 *$(CC) $(CPPFLAGS) $(IFLAGS) $<
277
278OBJ1 = adler32$(O) compress$(O) crc32$(O) gzio$(O) uncompr$(O) deflate$(O) \
9be9b974 279 trees$(O)
f2071dda 280OBJ2 = zutil$(O) inflate$(O) infblock$(O) inftrees$(O) infcodes$(O) \
9be9b974 281 infutil$(O) inffast$(O)
f2071dda
VZ
282
283adler32.obj: adler32.c zutil.h zlib.h zconf.h
284 $(CC) -c $(CFLAGS) $*.c
285
286compress.obj: compress.c zlib.h zconf.h
287 $(CC) -c $(CFLAGS) $*.c
288
289crc32.obj: crc32.c zutil.h zlib.h zconf.h
290 $(CC) -c $(CFLAGS) $*.c
291
292deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
293 $(CC) -c $(CFLAGS) $*.c
294
295gzio.obj: gzio.c zutil.h zlib.h zconf.h
296 $(CC) -c $(CFLAGS) $*.c
297
298infblock.obj: infblock.c zutil.h zlib.h zconf.h infblock.h inftrees.h\
299 infcodes.h infutil.h
300 $(CC) -c $(CFLAGS) $*.c
301
302infcodes.obj: infcodes.c zutil.h zlib.h zconf.h inftrees.h infutil.h\
303 infcodes.h inffast.h
304 $(CC) -c $(CFLAGS) $*.c
305
306inflate.obj: inflate.c zutil.h zlib.h zconf.h infblock.h
307 $(CC) -c $(CFLAGS) $*.c
308
309inftrees.obj: inftrees.c zutil.h zlib.h zconf.h inftrees.h
310 $(CC) -c $(CFLAGS) $*.c
311
312infutil.obj: infutil.c zutil.h zlib.h zconf.h inftrees.h infutil.h
313 $(CC) -c $(CFLAGS) $*.c
314
315inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h infutil.h inffast.h
316 $(CC) -c $(CFLAGS) $*.c
317
318trees.obj: trees.c deflate.h zutil.h zlib.h zconf.h
319 $(CC) -c $(CFLAGS) $*.c
320
321uncompr.obj: uncompr.c zlib.h zconf.h
322 $(CC) -c $(CFLAGS) $*.c
323
324zutil.obj: zutil.c zutil.h zlib.h zconf.h
325 $(CC) -c $(CFLAGS) $*.c
326
327xpm: .SYMBOLIC
328 cd $(WXDIR)\src\xpm
329 wmake -f makefile.wat all
330 cd $(WXDIR)\src\msw
331
332clean_xpm: .SYMBOLIC
333 cd $(WXDIR)\src\xpm
334 wmake -f makefile.wat clean
335 cd $(WXDIR)\src\msw
336
337png: .SYMBOLIC
338 cd $(WXDIR)\src\png
339 wmake -f makefile.wat all
340 cd $(WXDIR)\src\msw
341
342clean_png: .SYMBOLIC
343 cd $(WXDIR)\src\png
344 wmake -f makefile.wat clean
345 cd $(WXDIR)\src\msw
346
347zlib: .SYMBOLIC
348 cd $(WXDIR)\src\zlib
349 wmake -f makefile.wat all
350 cd $(WXDIR)\src\msw
351
352clean_zlib: .SYMBOLIC
353 cd $(WXDIR)\src\zlib
354 wmake -f makefile.wat clean
355 cd $(WXDIR)\src\msw
356
9be9b974
RD
357MFTYPE=wat
358makefile.$(MFTYPE) : $(WXWIN)\distrib\msw\tmake\filelist.txt $(WXWIN)\distrib\msw\tmake\$(MFTYPE).t
359 cd $(WXWIN)\distrib\msw\tmake
360 tmake -t $(MFTYPE) wxwin.pro -o makefile.$(MFTYPE)
361 copy makefile.$(MFTYPE) $(WXWIN)\src\msw