Report dwarf as V2 for ELF32
[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 NASM =  nasm.$(O) nasmlib.$(O) float.$(O) insnsa.$(O) assemble.$(O) &
48         labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) &
49         outform.$(O) output\outbin.$(O) &
50         output\outaout.$(O) output\outcoff.$(O) &
51         output\outelf32.$(O) output\outelf64.$(O) &
52         output\outobj.$(O) output\outas86.$(O) output\outrdf2.$(O) &
53         output\outdbg.$(O) output\outieee.$(O) output\outmacho.$(O) &
54         preproc.$(O) pptok.$(O) &
55         listing.$(O) eval.$(O) exprlib.$(O) stdscan.$(O) tokhash.$(O)
56
57 NDISASM = ndisasm.$(O) disasm.$(O) sync.$(O) nasmlib.$(O) insnsd.$(O)
58
59 what:   .SYMBOLIC
60         @echo Please build "dos", "win32" or "os2"
61
62 dos:    .SYMBOLIC
63         $(MAKE) /f $(__MAKEFILES__) all TARGET_FLAGS="-bt=DOS -l=DOS4G"
64
65 win32:  .SYMBOLIC
66         $(MAKE) /f $(__MAKEFILES__) all TARGET_FLAGS="-bt=NT  -l=NT"
67
68 os2:    .SYMBOLIC
69         $(MAKE) /f $(__MAKEFILES__) all TARGET_FLAGS="-bt=OS2 -l=OS2V2"
70
71 all: nasm$(X) ndisasm$(X) .SYMBOLIC
72         rem cd rdoff && $(MAKE) all
73
74 nasm$(X): $(NASM)
75         $(LD) $(LDFLAGS) -fe=nasm$(X) $(NASM) $(LIBS)
76
77 ndisasm$(X): $(NDISASM)
78         $(LD) $(LDFLAGS) -fe=ndisasm$(X) $(NDISASM) $(LIBS)
79
80 # These source files are automagically generated from a single
81 # instruction-table file by a Perl script. They're distributed,
82 # though, so it isn't necessary to have Perl just to recompile NASM
83 # from the distribution.
84
85 insnsa.c: insns.dat insns.pl
86         $(PERL) $(srcdir)/insns.pl -a $(srcdir)/insns.dat
87 insnsd.c: insns.dat insns.pl
88         $(PERL) $(srcdir)/insns.pl -d $(srcdir)/insns.dat
89 insnsi.h: insns.dat insns.pl
90         $(PERL) $(srcdir)/insns.pl -i $(srcdir)/insns.dat
91 insnsn.c: insns.dat insns.pl
92         $(PERL) $(srcdir)/insns.pl -n $(srcdir)/insns.dat
93
94 # These files contains all the standard macros that are derived from
95 # the version number.
96 version.h: version version.pl
97         $(PERL) $(srcdir)/version.pl h < $(srcdir)/version > version.h
98
99 version.mac: version version.pl
100         $(PERL) $(srcdir)/version.pl mac < $(srcdir)/version > version.mac
101
102 # This source file is generated from the standard macros file
103 # `standard.mac' by another Perl script. Again, it's part of the
104 # standard distribution.
105
106 macros.c: macros.pl standard.mac version.mac
107         $(PERL) $(srcdir)/macros.pl $(srcdir)/standard.mac version.mac
108
109 # These source files are generated from regs.dat by yet another
110 # perl script.
111 regs.c: regs.dat regs.pl
112         $(PERL) $(srcdir)/regs.pl c $(srcdir)/regs.dat > regs.c
113 regflags.c: regs.dat regs.pl
114         $(PERL) $(srcdir)/regs.pl fc $(srcdir)/regs.dat > regflags.c
115 regdis.c: regs.dat regs.pl
116         $(PERL) $(srcdir)/regs.pl dc $(srcdir)/regs.dat > regdis.c
117 regvals.c: regs.dat regs.pl
118         $(PERL) $(srcdir)/regs.pl vc $(srcdir)/regs.dat > regvals.c
119 regs.h: regs.dat regs.pl
120         $(PERL) $(srcdir)/regs.pl h $(srcdir)/regs.dat > regs.h
121
122 # Assembler token hash
123 tokhash.c: insns.dat regs.dat tokens.dat tokhash.pl perllib/phash.ph
124         $(PERL) $(srcdir)/tokhash.pl c $(srcdir)/insns.dat $(srcdir)/regs.dat &
125                 $(srcdir)/tokens.dat > tokhash.c
126
127 # Assembler token metadata
128 tokens.h: insns.dat regs.dat tokens.dat tokhash.pl perllib/phash.ph
129         $(PERL) $(srcdir)/tokhash.pl h $(srcdir)/insns.dat $(srcdir)/regs.dat &
130                 $(srcdir)/tokens.dat > tokens.h
131
132 # Preprocessor token hash
133 pptok.h: pptok.dat pptok.pl perllib/phash.ph
134         $(PERL) $(srcdir)/pptok.pl h $(srcdir)/pptok.dat pptok.h
135 pptok.c: pptok.dat pptok.pl perllib/phash.ph
136         $(PERL) $(srcdir)/pptok.pl c $(srcdir)/pptok.dat pptok.c
137
138 # This target generates all files that require perl.
139 # This allows easier generation of distribution (see dist target).
140 PERLREQ = macros.c insnsa.c insnsd.c insnsi.h insnsn.c &
141           regs.c regs.h regflags.c regdis.c regvals.c tokhash.c tokens.h &
142           version.h version.mac pptok.h pptok.c
143 perlreq: $(PERLREQ)
144
145 clean: .SYMBOLIC
146         -del /f *.$(O)
147         -del /f *.s
148         -del /f *.i
149         -del /f output\*.$(O)
150         -del /f output\*.s
151         -del /f output\*.i
152         -del /f nasm$(X)
153         -del /f ndisasm$(X)
154         rem cd rdoff && $(MAKE) clean
155
156 distclean: clean .SYMBOLIC
157         -del /f config.h
158         -del /f config.log
159         -del /f config.status
160         -del /f Makefile
161         -del /f *~
162         -del /f *.bak
163         -del /f *.lst
164         -del /f *.bin
165         -del /f output\*~
166         -del /f output\*.bak
167         -del /f test\*.lst
168         -del /f test\*.bin
169         -del /f test\*.$(O)
170         -del /f test\*.bin
171         -del /f/s autom4te*.cache
172         rem cd rdoff && $(MAKE) distclean
173
174 cleaner: clean .SYMBOLIC
175         -del /f $(PERLREQ)
176         -del /f *.man
177         -del /f nasm.spec
178         rem cd doc && $(MAKE) clean
179
180 spotless: distclean cleaner .SYMBOLIC
181         -del /f doc\Makefile
182         -del doc\*~
183         -del doc\*.bak
184
185 strip: .SYMBOLIC
186         $(STRIP) *.exe
187
188 rdf:
189         # cd rdoff && $(MAKE)
190
191 doc:
192         # cd doc && $(MAKE) all
193
194 everything: all doc rdf
195
196 #-- Magic hints to mkdep.pl --#
197 # @object-ending: ".$(O)"
198 # @path-separator: "\"
199 # @exclude: "config.h"
200 # @continuation: "&"
201 #-- Everything below is generated by mkdep.pl - do not edit --#
202 assemble.$(O): assemble.c assemble.h compiler.h insns.h insnsi.h nasm.h &
203  nasmlib.h pptok.h preproc.h regflags.c regs.h regvals.c tokens.h version.h
204 crc64.$(O): crc64.c compiler.h
205 disasm.$(O): disasm.c compiler.h disasm.h insns.h insnsi.h insnsn.c names.c &
206  nasm.h nasmlib.h regdis.c regs.c regs.h sync.h tokens.h version.h
207 eval.$(O): eval.c compiler.h eval.h float.h insnsi.h labels.h nasm.h &
208  nasmlib.h regs.h version.h
209 exprlib.$(O): exprlib.c compiler.h insnsi.h nasm.h nasmlib.h regs.h &
210  version.h
211 float.$(O): float.c compiler.h float.h insnsi.h nasm.h nasmlib.h regs.h &
212  version.h
213 hashtbl.$(O): hashtbl.c compiler.h hashtbl.h insnsi.h nasm.h nasmlib.h &
214  regs.h version.h
215 insnsa.$(O): insnsa.c compiler.h insns.h insnsi.h nasm.h nasmlib.h regs.h &
216  tokens.h version.h
217 insnsd.$(O): insnsd.c compiler.h insns.h insnsi.h nasm.h nasmlib.h regs.h &
218  tokens.h version.h
219 insnsn.$(O): insnsn.c
220 labels.$(O): labels.c compiler.h hashtbl.h insnsi.h nasm.h nasmlib.h regs.h &
221  version.h
222 lib\snprintf.$(O): lib\snprintf.c compiler.h nasmlib.h
223 lib\vsnprintf.$(O): lib\vsnprintf.c compiler.h nasmlib.h
224 listing.$(O): listing.c compiler.h insnsi.h listing.h nasm.h nasmlib.h &
225  regs.h version.h
226 macros.$(O): macros.c compiler.h
227 names.$(O): names.c compiler.h insnsn.c regs.c
228 nasm.$(O): nasm.c assemble.h compiler.h eval.h float.h insns.h insnsi.h &
229  labels.h listing.h nasm.h nasmlib.h outform.h parser.h pptok.h preproc.h &
230  regs.h stdscan.h tokens.h version.h
231 nasmlib.$(O): nasmlib.c compiler.h insns.h insnsi.h nasm.h nasmlib.h regs.h &
232  tokens.h version.h
233 ndisasm.$(O): ndisasm.c compiler.h disasm.h insns.h insnsi.h nasm.h &
234  nasmlib.h regs.h sync.h tokens.h version.h
235 outform.$(O): outform.c compiler.h insnsi.h nasm.h nasmlib.h outform.h &
236  regs.h version.h
237 output\outaout.$(O): output\outaout.c compiler.h insnsi.h nasm.h nasmlib.h &
238  outform.h regs.h stdscan.h version.h
239 output\outas86.$(O): output\outas86.c compiler.h insnsi.h nasm.h nasmlib.h &
240  outform.h regs.h version.h
241 output\outbin.$(O): output\outbin.c compiler.h eval.h insnsi.h labels.h &
242  nasm.h nasmlib.h outform.h regs.h stdscan.h version.h
243 output\outcoff.$(O): output\outcoff.c compiler.h insnsi.h nasm.h nasmlib.h &
244  outform.h regs.h version.h
245 output\outdbg.$(O): output\outdbg.c compiler.h insnsi.h nasm.h nasmlib.h &
246  outform.h regs.h version.h
247 output\outelf32.$(O): output\outelf32.c compiler.h insnsi.h nasm.h nasmlib.h &
248  outform.h regs.h stdscan.h version.h
249 output\outelf64.$(O): output\outelf64.c compiler.h insnsi.h nasm.h nasmlib.h &
250  outform.h regs.h stdscan.h version.h
251 output\outieee.$(O): output\outieee.c compiler.h insnsi.h nasm.h nasmlib.h &
252  outform.h regs.h version.h
253 output\outmacho.$(O): output\outmacho.c compiler.h insnsi.h nasm.h nasmlib.h &
254  outform.h regs.h version.h
255 output\outobj.$(O): output\outobj.c compiler.h insnsi.h nasm.h nasmlib.h &
256  outform.h regs.h stdscan.h version.h
257 output\outrdf.$(O): output\outrdf.c compiler.h insnsi.h nasm.h nasmlib.h &
258  outform.h regs.h version.h
259 output\outrdf2.$(O): output\outrdf2.c compiler.h insnsi.h nasm.h nasmlib.h &
260  outform.h rdoff\rdoff.h regs.h version.h
261 parser.$(O): parser.c compiler.h float.h insns.h insnsi.h nasm.h nasmlib.h &
262  parser.h regflags.c regs.h stdscan.h tokens.h version.h
263 pptok.$(O): pptok.c compiler.h hashtbl.h nasmlib.h pptok.h preproc.h
264 preproc.$(O): preproc.c compiler.h hashtbl.h insnsi.h macros.c nasm.h &
265  nasmlib.h pptok.h preproc.h regs.h stdscan.h tokens.h version.h
266 regdis.$(O): regdis.c
267 regflags.$(O): regflags.c
268 regs.$(O): regs.c compiler.h
269 regvals.$(O): regvals.c
270 stdscan.$(O): stdscan.c compiler.h insns.h insnsi.h nasm.h nasmlib.h regs.h &
271  stdscan.h tokens.h version.h
272 sync.$(O): sync.c compiler.h nasmlib.h sync.h
273 tokhash.$(O): tokhash.c compiler.h hashtbl.h insns.h insnsi.h nasm.h &
274  nasmlib.h regs.h tokens.h version.h