BR 2887108: fix incorrect sbyte usage in IMUL
[nasm.git] / Mkfiles / openwcom.mak
blob2e63634d77d10f8928aac84b0b220e7266798d1c
1 # -*- makefile -*-
3 # Makefile for building NASM using OpenWatcom 1.7
4 # building on a DOS/Win/OS2 platform host (backslashes
5 # used in pathnames)
8 top_srcdir = .
9 srcdir = .
10 VPATH = .\output
11 prefix = C:\Program Files\NASM
12 exec_prefix = $(prefix)
13 bindir = $(prefix)\bin
14 mandir = $(prefix)\man
16 CC = wcl386
17 DEBUG =
18 CFLAGS = -6 -ox -wx -ze -fpi $(DEBUG)
19 BUILD_CFLAGS = $(CFLAGS) $(TARGET_FLAGS) # -I$(srcdir)/inttypes
20 INTERNAL_CFLAGS = -I$(srcdir) -I. -DHAVE_SNPRINTF -DHAVE_VSNPRINTF
21 ALL_CFLAGS = $(BUILD_CFLAGS) $(INTERNAL_CFLAGS)
22 LD = $(CC)
23 LDFLAGS = $(ALL_CFLAGS)
24 LIBS =
25 PERL = perl -I$(srcdir)/perllib
27 STRIP = wstrip
29 # Binary suffixes
30 O = obj
31 X = .exe
33 # WMAKE errors out if a suffix is declared more than once, including
34 # its own built-in declarations. Thus, we need to explicitly clear the list
35 # first. Also, WMAKE only allows implicit rules that point "to the left"
36 # in this list!
37 .SUFFIXES:
38 .SUFFIXES: .man .1 .$(O) .i .c
40 # Needed to find C files anywhere but in the current directory
41 .c : $(VPATH)
43 .c.$(O):
44 $(CC) -c $(ALL_CFLAGS) -fo=$^@ $[@
46 # Note: wcl386 is broken if forward slashes are used as path separators.
47 #-- Begin File Lists --#
48 # Edit in Makefile.in, not here!
49 NASM = nasm.$(O) nasmlib.$(O) ver.$(O) &
50 raa.$(O) saa.$(O) rbtree.$(O) &
51 float.$(O) insnsa.$(O) insnsb.$(O) &
52 directives.$(O) &
53 assemble.$(O) labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) &
54 output\outform.$(O) output\outlib.$(O) output\nulldbg.$(O) &
55 output\nullout.$(O) &
56 output\outbin.$(O) output\outaout.$(O) output\outcoff.$(O) &
57 output\outelf.$(O) output\outelf32.$(O) output\outelf64.$(O) &
58 output\outobj.$(O) output\outas86.$(O) output\outrdf2.$(O) &
59 output\outdbg.$(O) output\outieee.$(O) output\outmacho32.$(O) &
60 output\outmacho64.$(O) preproc.$(O) quote.$(O) pptok.$(O) &
61 macros.$(O) listing.$(O) eval.$(O) exprlib.$(O) stdscan.$(O) &
62 strfunc.$(O) tokhash.$(O) regvals.$(O) regflags.$(O) &
63 lib\strlcpy.$(O)
65 NDISASM = ndisasm.$(O) disasm.$(O) sync.$(O) nasmlib.$(O) ver.$(O) &
66 insnsd.$(O) insnsb.$(O) insnsn.$(O) regs.$(O) regdis.$(O)
67 #-- End File Lists --#
69 what: .SYMBOLIC
70 @echo Please build "dos", "win32" or "os2"
72 dos: .SYMBOLIC
73 $(MAKE) /f $(__MAKEFILES__) all TARGET_FLAGS="-bt=DOS -l=DOS4G"
75 win32: .SYMBOLIC
76 $(MAKE) /f $(__MAKEFILES__) all TARGET_FLAGS="-bt=NT -l=NT"
78 os2: .SYMBOLIC
79 $(MAKE) /f $(__MAKEFILES__) all TARGET_FLAGS="-bt=OS2 -l=OS2V2"
81 all: nasm$(X) ndisasm$(X) .SYMBOLIC
82 rem cd rdoff && $(MAKE) all
84 nasm$(X): $(NASM)
85 $(LD) $(LDFLAGS) -fe=nasm$(X) $(NASM) $(LIBS)
87 ndisasm$(X): $(NDISASM)
88 $(LD) $(LDFLAGS) -fe=ndisasm$(X) $(NDISASM) $(LIBS)
90 # These source files are automagically generated from a single
91 # instruction-table file by a Perl script. They're distributed,
92 # though, so it isn't necessary to have Perl just to recompile NASM
93 # from the distribution.
95 insnsb.c: insns.dat insns.pl
96 $(PERL) $(srcdir)/insns.pl -b $(srcdir)/insns.dat
97 insnsa.c: insns.dat insns.pl
98 $(PERL) $(srcdir)/insns.pl -a $(srcdir)/insns.dat
99 insnsd.c: insns.dat insns.pl
100 $(PERL) $(srcdir)/insns.pl -d $(srcdir)/insns.dat
101 insnsi.h: insns.dat insns.pl
102 $(PERL) $(srcdir)/insns.pl -i $(srcdir)/insns.dat
103 insnsn.c: insns.dat insns.pl
104 $(PERL) $(srcdir)/insns.pl -n $(srcdir)/insns.dat
106 # These files contains all the standard macros that are derived from
107 # the version number.
108 version.h: version version.pl
109 $(PERL) $(srcdir)/version.pl h < $(srcdir)/version > version.h
111 version.mac: version version.pl
112 $(PERL) $(srcdir)/version.pl mac < $(srcdir)/version > version.mac
114 # This source file is generated from the standard macros file
115 # `standard.mac' by another Perl script. Again, it's part of the
116 # standard distribution.
118 macros.c: macros.pl standard.mac version.mac
119 $(PERL) $(srcdir)/macros.pl $(srcdir)/standard.mac version.mac
121 # These source files are generated from regs.dat by yet another
122 # perl script.
123 regs.c: regs.dat regs.pl
124 $(PERL) $(srcdir)/regs.pl c $(srcdir)/regs.dat > regs.c
125 regflags.c: regs.dat regs.pl
126 $(PERL) $(srcdir)/regs.pl fc $(srcdir)/regs.dat > regflags.c
127 regdis.c: regs.dat regs.pl
128 $(PERL) $(srcdir)/regs.pl dc $(srcdir)/regs.dat > regdis.c
129 regdis.h: regs.dat regs.pl
130 $(PERL) $(srcdir)/regs.pl dh $(srcdir)/regs.dat > regdis.h
131 regvals.c: regs.dat regs.pl
132 $(PERL) $(srcdir)/regs.pl vc $(srcdir)/regs.dat > regvals.c
133 regs.h: regs.dat regs.pl
134 $(PERL) $(srcdir)/regs.pl h $(srcdir)/regs.dat > regs.h
136 # Assembler token hash
137 tokhash.c: insns.dat regs.dat tokens.dat tokhash.pl perllib/phash.ph
138 $(PERL) $(srcdir)/tokhash.pl c $(srcdir)/insns.dat $(srcdir)/regs.dat &
139 $(srcdir)/tokens.dat > tokhash.c
141 # Assembler token metadata
142 tokens.h: insns.dat regs.dat tokens.dat tokhash.pl perllib/phash.ph
143 $(PERL) $(srcdir)/tokhash.pl h $(srcdir)/insns.dat $(srcdir)/regs.dat &
144 $(srcdir)/tokens.dat > tokens.h
146 # Preprocessor token hash
147 pptok.h: pptok.dat pptok.pl perllib/phash.ph
148 $(PERL) $(srcdir)/pptok.pl h $(srcdir)/pptok.dat pptok.h
149 pptok.c: pptok.dat pptok.pl perllib/phash.ph
150 $(PERL) $(srcdir)/pptok.pl c $(srcdir)/pptok.dat pptok.c
152 # This target generates all files that require perl.
153 # This allows easier generation of distribution (see dist target).
154 PERLREQ = macros.c insnsb.c insnsa.c insnsd.c insnsi.h insnsn.c &
155 regs.c regs.h regflags.c regdis.c regdis.h regvals.c &
156 tokhash.c tokens.h pptok.h pptok.c &
157 version.h version.mac
158 perlreq: $(PERLREQ)
160 clean: .SYMBOLIC
161 -del /f *.$(O)
162 -del /f *.s
163 -del /f *.i
164 -del /f output\*.$(O)
165 -del /f output\*.s
166 -del /f output\*.i
167 -del /f nasm$(X)
168 -del /f ndisasm$(X)
169 rem cd rdoff && $(MAKE) clean
171 distclean: clean .SYMBOLIC
172 -del /f config.h
173 -del /f config.log
174 -del /f config.status
175 -del /f Makefile
176 -del /f *~
177 -del /f *.bak
178 -del /f *.lst
179 -del /f *.bin
180 -del /f output\*~
181 -del /f output\*.bak
182 -del /f test\*.lst
183 -del /f test\*.bin
184 -del /f test\*.$(O)
185 -del /f test\*.bin
186 -del /f/s autom4te*.cache
187 rem cd rdoff && $(MAKE) distclean
189 cleaner: clean .SYMBOLIC
190 -del /f $(PERLREQ)
191 -del /f *.man
192 -del /f nasm.spec
193 rem cd doc && $(MAKE) clean
195 spotless: distclean cleaner .SYMBOLIC
196 -del /f doc\Makefile
197 -del doc\*~
198 -del doc\*.bak
200 strip: .SYMBOLIC
201 $(STRIP) *.exe
203 rdf:
204 # cd rdoff && $(MAKE)
206 doc:
207 # cd doc && $(MAKE) all
209 everything: all doc rdf
211 #-- Magic hints to mkdep.pl --#
212 # @object-ending: ".$(O)"
213 # @path-separator: "\"
214 # @exclude: "config.h"
215 # @continuation: "&"
216 #-- Everything below is generated by mkdep.pl - do not edit --#
217 assemble.$(O): assemble.c assemble.h compiler.h directives.h insns.h &
218 insnsi.h nasm.h nasmlib.h pptok.h preproc.h regs.h tables.h tokens.h
219 crc64.$(O): crc64.c compiler.h nasmlib.h
220 directives.$(O): directives.c compiler.h directives.h hashtbl.h insnsi.h &
221 nasm.h nasmlib.h pptok.h preproc.h regs.h
222 disasm.$(O): disasm.c compiler.h directives.h disasm.h insns.h insnsi.h &
223 nasm.h nasmlib.h pptok.h preproc.h regdis.h regs.h sync.h tables.h tokens.h
224 eval.$(O): eval.c compiler.h directives.h eval.h float.h insnsi.h labels.h &
225 nasm.h nasmlib.h pptok.h preproc.h regs.h
226 exprlib.$(O): exprlib.c compiler.h directives.h insnsi.h nasm.h nasmlib.h &
227 pptok.h preproc.h regs.h
228 float.$(O): float.c compiler.h directives.h float.h insnsi.h nasm.h &
229 nasmlib.h pptok.h preproc.h regs.h
230 hashtbl.$(O): hashtbl.c compiler.h directives.h hashtbl.h insnsi.h nasm.h &
231 nasmlib.h pptok.h preproc.h regs.h
232 insnsa.$(O): insnsa.c compiler.h directives.h insns.h insnsi.h nasm.h &
233 nasmlib.h pptok.h preproc.h regs.h tokens.h
234 insnsb.$(O): insnsb.c compiler.h directives.h insns.h insnsi.h nasm.h &
235 nasmlib.h pptok.h preproc.h regs.h tokens.h
236 insnsd.$(O): insnsd.c compiler.h directives.h insns.h insnsi.h nasm.h &
237 nasmlib.h pptok.h preproc.h regs.h tokens.h
238 insnsn.$(O): insnsn.c compiler.h insnsi.h tables.h
239 labels.$(O): labels.c compiler.h directives.h hashtbl.h insnsi.h nasm.h &
240 nasmlib.h pptok.h preproc.h regs.h
241 lib\snprintf.$(O): lib\snprintf.c compiler.h nasmlib.h
242 lib\strlcpy.$(O): lib\strlcpy.c compiler.h
243 lib\vsnprintf.$(O): lib\vsnprintf.c compiler.h nasmlib.h
244 listing.$(O): listing.c compiler.h directives.h insnsi.h listing.h nasm.h &
245 nasmlib.h pptok.h preproc.h regs.h
246 macros.$(O): macros.c compiler.h directives.h hashtbl.h insnsi.h nasm.h &
247 nasmlib.h output\outform.h pptok.h preproc.h regs.h tables.h
248 nasm.$(O): nasm.c assemble.h compiler.h directives.h eval.h float.h insns.h &
249 insnsi.h labels.h listing.h nasm.h nasmlib.h output\outform.h parser.h &
250 pptok.h preproc.h raa.h regs.h saa.h stdscan.h tokens.h
251 nasmlib.$(O): nasmlib.c compiler.h directives.h insns.h insnsi.h nasm.h &
252 nasmlib.h pptok.h preproc.h regs.h tokens.h
253 ndisasm.$(O): ndisasm.c compiler.h directives.h disasm.h insns.h insnsi.h &
254 nasm.h nasmlib.h pptok.h preproc.h regs.h sync.h tokens.h
255 output\nulldbg.$(O): output\nulldbg.c compiler.h directives.h insnsi.h &
256 nasm.h nasmlib.h pptok.h preproc.h regs.h
257 output\nullout.$(O): output\nullout.c compiler.h directives.h insnsi.h &
258 nasm.h nasmlib.h output\outlib.h pptok.h preproc.h regs.h
259 output\outaout.$(O): output\outaout.c compiler.h directives.h eval.h &
260 insnsi.h nasm.h nasmlib.h output\outform.h output\outlib.h pptok.h &
261 preproc.h raa.h regs.h saa.h stdscan.h
262 output\outas86.$(O): output\outas86.c compiler.h directives.h insnsi.h &
263 nasm.h nasmlib.h output\outform.h output\outlib.h pptok.h preproc.h raa.h &
264 regs.h saa.h
265 output\outbin.$(O): output\outbin.c compiler.h directives.h eval.h insnsi.h &
266 labels.h nasm.h nasmlib.h output\outform.h output\outlib.h pptok.h &
267 preproc.h regs.h saa.h stdscan.h
268 output\outcoff.$(O): output\outcoff.c compiler.h directives.h eval.h &
269 insnsi.h nasm.h nasmlib.h output\outform.h output\outlib.h pptok.h &
270 preproc.h raa.h regs.h saa.h
271 output\outdbg.$(O): output\outdbg.c compiler.h directives.h insnsi.h nasm.h &
272 nasmlib.h output\outform.h pptok.h preproc.h regs.h
273 output\outelf.$(O): output\outelf.c compiler.h directives.h insnsi.h nasm.h &
274 nasmlib.h output\dwarf.h output\elfcommon.h output\outelf.h &
275 output\outform.h pptok.h preproc.h regs.h
276 output\outelf32.$(O): output\outelf32.c compiler.h directives.h eval.h &
277 insnsi.h nasm.h nasmlib.h output\dwarf.h output\elf32.h output\elfcommon.h &
278 output\outelf.h output\outform.h output\outlib.h pptok.h preproc.h raa.h &
279 rbtree.h regs.h saa.h stdscan.h
280 output\outelf64.$(O): output\outelf64.c compiler.h directives.h eval.h &
281 insnsi.h nasm.h nasmlib.h output\dwarf.h output\elf64.h output\elfcommon.h &
282 output\outelf.h output\outform.h output\outlib.h pptok.h preproc.h raa.h &
283 rbtree.h regs.h saa.h stdscan.h
284 output\outform.$(O): output\outform.c compiler.h directives.h insnsi.h &
285 nasm.h nasmlib.h output\outform.h pptok.h preproc.h regs.h
286 output\outieee.$(O): output\outieee.c compiler.h directives.h insnsi.h &
287 nasm.h nasmlib.h output\outform.h output\outlib.h pptok.h preproc.h regs.h
288 output\outlib.$(O): output\outlib.c compiler.h directives.h insnsi.h nasm.h &
289 nasmlib.h output\outlib.h pptok.h preproc.h regs.h
290 output\outmacho32.$(O): output\outmacho32.c compiler.h directives.h eval.h &
291 insnsi.h nasm.h nasmlib.h output\outform.h output\outlib.h pptok.h &
292 preproc.h raa.h regs.h saa.h
293 output\outmacho64.$(O): output\outmacho64.c compiler.h directives.h insnsi.h &
294 nasm.h nasmlib.h output\outform.h output\outlib.h pptok.h preproc.h raa.h &
295 regs.h saa.h
296 output\outobj.$(O): output\outobj.c compiler.h directives.h eval.h insnsi.h &
297 nasm.h nasmlib.h output\outform.h output\outlib.h pptok.h preproc.h regs.h &
298 stdscan.h
299 output\outrdf.$(O): output\outrdf.c compiler.h directives.h insnsi.h nasm.h &
300 nasmlib.h output\outform.h pptok.h preproc.h regs.h
301 output\outrdf2.$(O): output\outrdf2.c compiler.h directives.h insnsi.h &
302 nasm.h nasmlib.h output\outform.h output\outlib.h pptok.h preproc.h &
303 rdoff\rdoff.h regs.h saa.h
304 parser.$(O): parser.c compiler.h directives.h eval.h float.h insns.h &
305 insnsi.h nasm.h nasmlib.h parser.h pptok.h preproc.h regs.h stdscan.h &
306 tables.h tokens.h
307 pptok.$(O): pptok.c compiler.h hashtbl.h nasmlib.h pptok.h preproc.h
308 preproc.$(O): preproc.c compiler.h directives.h eval.h hashtbl.h insnsi.h &
309 nasm.h nasmlib.h pptok.h preproc.h quote.h regs.h stdscan.h tables.h &
310 tokens.h
311 quote.$(O): quote.c compiler.h nasmlib.h quote.h
312 raa.$(O): raa.c compiler.h nasmlib.h raa.h
313 rbtree.$(O): rbtree.c compiler.h rbtree.h
314 regdis.$(O): regdis.c regdis.h regs.h
315 regflags.$(O): regflags.c compiler.h directives.h insnsi.h nasm.h nasmlib.h &
316 pptok.h preproc.h regs.h tables.h
317 regs.$(O): regs.c compiler.h insnsi.h tables.h
318 regvals.$(O): regvals.c compiler.h insnsi.h tables.h
319 saa.$(O): saa.c compiler.h nasmlib.h saa.h
320 stdscan.$(O): stdscan.c compiler.h directives.h insns.h insnsi.h nasm.h &
321 nasmlib.h pptok.h preproc.h quote.h regs.h stdscan.h tokens.h
322 strfunc.$(O): strfunc.c compiler.h directives.h insnsi.h nasm.h nasmlib.h &
323 pptok.h preproc.h regs.h
324 sync.$(O): sync.c compiler.h nasmlib.h sync.h
325 tokhash.$(O): tokhash.c compiler.h directives.h hashtbl.h insns.h insnsi.h &
326 nasm.h nasmlib.h pptok.h preproc.h regs.h tokens.h
327 ver.$(O): ver.c compiler.h directives.h insnsi.h nasm.h nasmlib.h pptok.h &
328 preproc.h regs.h version.h