Run "make alldeps"
[platform/upstream/nasm.git] / Mkfiles / openwcom.mak
1 # -*- makefile -*-
2 #
3 # Makefile for building NASM using OpenWatcom 1.7
4 # building on a DOS/Win/OS2 platform host (backslashes
5 # used in pathnames)
6 #
7
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
15
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
26
27 STRIP           = wstrip
28
29 # Binary suffixes
30 O               = obj
31 X               = .exe
32
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
39
40 # Needed to find C files anywhere but in the current directory
41 .c : $(VPATH)
42
43 .c.$(O):
44         $(CC) -c $(ALL_CFLAGS) -fo=$^@ $[@
45
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)
64
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 --#
68
69 what:   .SYMBOLIC
70         @echo Please build "dos", "win32" or "os2"
71
72 dos:    .SYMBOLIC
73         $(MAKE) /f $(__MAKEFILES__) all TARGET_FLAGS="-bt=DOS -l=DOS4G"
74
75 win32:  .SYMBOLIC
76         $(MAKE) /f $(__MAKEFILES__) all TARGET_FLAGS="-bt=NT  -l=NT"
77
78 os2:    .SYMBOLIC
79         $(MAKE) /f $(__MAKEFILES__) all TARGET_FLAGS="-bt=OS2 -l=OS2V2"
80
81 all: nasm$(X) ndisasm$(X) .SYMBOLIC
82         rem cd rdoff && $(MAKE) all
83
84 nasm$(X): $(NASM)
85         $(LD) $(LDFLAGS) -fe=nasm$(X) $(NASM) $(LIBS)
86
87 ndisasm$(X): $(NDISASM)
88         $(LD) $(LDFLAGS) -fe=ndisasm$(X) $(NDISASM) $(LIBS)
89
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.
94
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
105
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
110
111 version.mac: version version.pl
112         $(PERL) $(srcdir)/version.pl mac < $(srcdir)/version > version.mac
113
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.
117
118 macros.c: macros.pl standard.mac version.mac
119         $(PERL) $(srcdir)/macros.pl $(srcdir)/standard.mac version.mac
120
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
135
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
140
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
145
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
151
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)
159
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
170
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
188
189 cleaner: clean .SYMBOLIC
190         -del /f $(PERLREQ)
191         -del /f *.man
192         -del /f nasm.spec
193         rem cd doc && $(MAKE) clean
194
195 spotless: distclean cleaner .SYMBOLIC
196         -del /f doc\Makefile
197         -del doc\*~
198         -del doc\*.bak
199
200 strip: .SYMBOLIC
201         $(STRIP) *.exe
202
203 rdf:
204         # cd rdoff && $(MAKE)
205
206 doc:
207         # cd doc && $(MAKE) all
208
209 everything: all doc rdf
210
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 opflags.h pptok.h preproc.h regs.h tables.h &
219  tokens.h
220 crc64.$(O): crc64.c compiler.h nasmlib.h
221 directives.$(O): directives.c compiler.h directives.h hashtbl.h insnsi.h &
222  nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h
223 disasm.$(O): disasm.c compiler.h directives.h disasm.h insns.h insnsi.h &
224  nasm.h nasmlib.h opflags.h pptok.h preproc.h regdis.h regs.h sync.h &
225  tables.h tokens.h
226 eval.$(O): eval.c compiler.h directives.h eval.h float.h insnsi.h labels.h &
227  nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h
228 exprlib.$(O): exprlib.c compiler.h directives.h insnsi.h nasm.h nasmlib.h &
229  opflags.h pptok.h preproc.h regs.h
230 float.$(O): float.c compiler.h directives.h float.h insnsi.h nasm.h &
231  nasmlib.h opflags.h pptok.h preproc.h regs.h
232 hashtbl.$(O): hashtbl.c compiler.h directives.h hashtbl.h insnsi.h nasm.h &
233  nasmlib.h opflags.h pptok.h preproc.h regs.h
234 insnsa.$(O): insnsa.c compiler.h directives.h insns.h insnsi.h nasm.h &
235  nasmlib.h opflags.h pptok.h preproc.h regs.h tokens.h
236 insnsb.$(O): insnsb.c compiler.h directives.h insns.h insnsi.h nasm.h &
237  nasmlib.h opflags.h pptok.h preproc.h regs.h tokens.h
238 insnsd.$(O): insnsd.c compiler.h directives.h insns.h insnsi.h nasm.h &
239  nasmlib.h opflags.h pptok.h preproc.h regs.h tokens.h
240 insnsn.$(O): insnsn.c compiler.h insnsi.h opflags.h tables.h
241 labels.$(O): labels.c compiler.h directives.h hashtbl.h insnsi.h nasm.h &
242  nasmlib.h opflags.h pptok.h preproc.h regs.h
243 lib\snprintf.$(O): lib\snprintf.c compiler.h nasmlib.h
244 lib\strlcpy.$(O): lib\strlcpy.c compiler.h
245 lib\vsnprintf.$(O): lib\vsnprintf.c compiler.h nasmlib.h
246 listing.$(O): listing.c compiler.h directives.h insnsi.h listing.h nasm.h &
247  nasmlib.h opflags.h pptok.h preproc.h regs.h
248 macros.$(O): macros.c compiler.h directives.h hashtbl.h insnsi.h nasm.h &
249  nasmlib.h opflags.h output\outform.h pptok.h preproc.h regs.h tables.h
250 nasm.$(O): nasm.c assemble.h compiler.h directives.h eval.h float.h insns.h &
251  insnsi.h labels.h listing.h nasm.h nasmlib.h opflags.h output\outform.h &
252  parser.h pptok.h preproc.h raa.h regs.h saa.h stdscan.h tokens.h
253 nasmlib.$(O): nasmlib.c compiler.h directives.h insns.h insnsi.h nasm.h &
254  nasmlib.h opflags.h pptok.h preproc.h regs.h tokens.h
255 ndisasm.$(O): ndisasm.c compiler.h directives.h disasm.h insns.h insnsi.h &
256  nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h sync.h tokens.h
257 output\nulldbg.$(O): output\nulldbg.c compiler.h directives.h insnsi.h &
258  nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h
259 output\nullout.$(O): output\nullout.c compiler.h directives.h insnsi.h &
260  nasm.h nasmlib.h opflags.h output\outlib.h pptok.h preproc.h regs.h
261 output\outaout.$(O): output\outaout.c compiler.h directives.h eval.h &
262  insnsi.h nasm.h nasmlib.h opflags.h output\outform.h output\outlib.h &
263  pptok.h preproc.h raa.h regs.h saa.h stdscan.h
264 output\outas86.$(O): output\outas86.c compiler.h directives.h insnsi.h &
265  nasm.h nasmlib.h opflags.h output\outform.h output\outlib.h pptok.h &
266  preproc.h raa.h regs.h saa.h
267 output\outbin.$(O): output\outbin.c compiler.h directives.h eval.h insnsi.h &
268  labels.h nasm.h nasmlib.h opflags.h output\outform.h output\outlib.h &
269  pptok.h preproc.h regs.h saa.h stdscan.h
270 output\outcoff.$(O): output\outcoff.c compiler.h directives.h eval.h &
271  insnsi.h nasm.h nasmlib.h opflags.h output\outform.h output\outlib.h &
272  pptok.h preproc.h raa.h regs.h saa.h
273 output\outdbg.$(O): output\outdbg.c compiler.h directives.h insnsi.h nasm.h &
274  nasmlib.h opflags.h output\outform.h pptok.h preproc.h regs.h
275 output\outelf.$(O): output\outelf.c compiler.h directives.h insnsi.h nasm.h &
276  nasmlib.h opflags.h output\dwarf.h output\elf.h output\outelf.h &
277  output\outform.h pptok.h preproc.h regs.h
278 output\outelf32.$(O): output\outelf32.c compiler.h directives.h eval.h &
279  insnsi.h nasm.h nasmlib.h opflags.h output\dwarf.h output\elf.h &
280  output\outelf.h output\outform.h output\outlib.h pptok.h preproc.h raa.h &
281  rbtree.h regs.h saa.h stdscan.h
282 output\outelf64.$(O): output\outelf64.c compiler.h directives.h eval.h &
283  insnsi.h nasm.h nasmlib.h opflags.h output\dwarf.h output\elf.h &
284  output\outelf.h output\outform.h output\outlib.h pptok.h preproc.h raa.h &
285  rbtree.h regs.h saa.h stdscan.h
286 output\outform.$(O): output\outform.c compiler.h directives.h insnsi.h &
287  nasm.h nasmlib.h opflags.h output\outform.h pptok.h preproc.h regs.h
288 output\outieee.$(O): output\outieee.c compiler.h directives.h insnsi.h &
289  nasm.h nasmlib.h opflags.h output\outform.h output\outlib.h pptok.h &
290  preproc.h regs.h
291 output\outlib.$(O): output\outlib.c compiler.h directives.h insnsi.h nasm.h &
292  nasmlib.h opflags.h output\outlib.h pptok.h preproc.h regs.h
293 output\outmacho32.$(O): output\outmacho32.c compiler.h directives.h eval.h &
294  insnsi.h nasm.h nasmlib.h opflags.h output\outform.h output\outlib.h &
295  pptok.h preproc.h raa.h regs.h saa.h
296 output\outmacho64.$(O): output\outmacho64.c compiler.h directives.h insnsi.h &
297  nasm.h nasmlib.h opflags.h output\outform.h output\outlib.h pptok.h &
298  preproc.h raa.h regs.h saa.h
299 output\outobj.$(O): output\outobj.c compiler.h directives.h eval.h insnsi.h &
300  nasm.h nasmlib.h opflags.h output\outform.h output\outlib.h pptok.h &
301  preproc.h regs.h stdscan.h
302 output\outrdf2.$(O): output\outrdf2.c compiler.h directives.h insnsi.h &
303  nasm.h nasmlib.h opflags.h output\outform.h output\outlib.h pptok.h &
304  preproc.h rdoff\rdoff.h regs.h saa.h
305 parser.$(O): parser.c compiler.h directives.h eval.h float.h insns.h &
306  insnsi.h nasm.h nasmlib.h opflags.h parser.h pptok.h preproc.h regs.h &
307  stdscan.h tables.h tokens.h
308 pptok.$(O): pptok.c compiler.h hashtbl.h nasmlib.h pptok.h preproc.h
309 preproc.$(O): preproc.c compiler.h directives.h eval.h hashtbl.h insnsi.h &
310  nasm.h nasmlib.h opflags.h pptok.h preproc.h quote.h regs.h stdscan.h &
311  tables.h tokens.h
312 quote.$(O): quote.c compiler.h nasmlib.h quote.h
313 raa.$(O): raa.c compiler.h nasmlib.h raa.h
314 rbtree.$(O): rbtree.c compiler.h rbtree.h
315 regdis.$(O): regdis.c regdis.h regs.h
316 regflags.$(O): regflags.c compiler.h directives.h insnsi.h nasm.h nasmlib.h &
317  opflags.h pptok.h preproc.h regs.h tables.h
318 regs.$(O): regs.c compiler.h insnsi.h opflags.h tables.h
319 regvals.$(O): regvals.c compiler.h insnsi.h opflags.h tables.h
320 saa.$(O): saa.c compiler.h nasmlib.h saa.h
321 stdscan.$(O): stdscan.c compiler.h directives.h insns.h insnsi.h nasm.h &
322  nasmlib.h opflags.h pptok.h preproc.h quote.h regs.h stdscan.h tokens.h
323 strfunc.$(O): strfunc.c compiler.h directives.h insnsi.h nasm.h nasmlib.h &
324  opflags.h pptok.h preproc.h regs.h
325 sync.$(O): sync.c compiler.h nasmlib.h sync.h
326 tokhash.$(O): tokhash.c compiler.h directives.h hashtbl.h insns.h insnsi.h &
327  nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h tokens.h
328 ver.$(O): ver.c compiler.h directives.h insnsi.h nasm.h nasmlib.h opflags.h &
329  pptok.h preproc.h regs.h version.h