NASM 2.11.06
[nasm/externdefs.git] / Mkfiles / msvc.mak
blobf1839a28c745b042159d42082a58043739ac873f
1 # -*- makefile -*-
3 # Makefile for building NASM using Microsoft Visual C++ and NMAKE.
4 # Tested on Microsoft Visual C++ 2005 Express Edition.
6 # Make sure to put the appropriate directories in your PATH, in
7 # the case of MSVC++ 2005, they are ...\VC\bin and ...\Common7\IDE.
9 top_srcdir = .
10 srcdir = .
11 VPATH = .
12 prefix = C:\Program Files\NASM
13 exec_prefix = $(prefix)
14 bindir = $(prefix)/bin
15 mandir = $(prefix)/man
17 CC = cl
18 CFLAGS = /O2 /Ox /Oy /W2
19 BUILD_CFLAGS = $(CFLAGS) /I$(srcdir)/inttypes
20 INTERNAL_CFLAGS = /I$(srcdir) /I. /DHAVE__SNPRINTF /DHAVE__VSNPRINTF
21 ALL_CFLAGS = $(BUILD_CFLAGS) $(INTERNAL_CFLAGS)
22 LDFLAGS =
23 LIBS =
24 PERL = perl -I$(srcdir)/perllib
26 # Binary suffixes
27 O = obj
28 X = .exe
30 .SUFFIXES: .c .i .s .$(O) .1 .man
32 .c.obj:
33 $(CC) /c $(ALL_CFLAGS) /Fo$@ $<
35 #-- Begin File Lists --#
36 # Edit in Makefile.in, not here!
37 NASM = nasm.$(O) nasmlib.$(O) ver.$(O) \
38 raa.$(O) saa.$(O) rbtree.$(O) \
39 float.$(O) insnsa.$(O) insnsb.$(O) \
40 directiv.$(O) \
41 assemble.$(O) labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) \
42 output/outform.$(O) output/outlib.$(O) output/nulldbg.$(O) \
43 output/nullout.$(O) \
44 output/outbin.$(O) output/outaout.$(O) output/outcoff.$(O) \
45 output/outelf.$(O) output/outelf32.$(O) output/outelf64.$(O) \
46 output/outelfx32.$(O) \
47 output/outobj.$(O) output/outas86.$(O) output/outrdf2.$(O) \
48 output/outdbg.$(O) output/outieee.$(O) output/outmac32.$(O) \
49 output/outmac64.$(O) preproc.$(O) quote.$(O) pptok.$(O) \
50 macros.$(O) listing.$(O) eval.$(O) exprlib.$(O) stdscan.$(O) \
51 strfunc.$(O) tokhash.$(O) regvals.$(O) regflags.$(O) \
52 ilog2.$(O) \
53 lib/strlcpy.$(O) \
54 preproc-nop.$(O) \
55 disp8.$(O) \
56 iflag.$(O)
58 NDISASM = ndisasm.$(O) disasm.$(O) sync.$(O) nasmlib.$(O) ver.$(O) \
59 insnsd.$(O) insnsb.$(O) insnsn.$(O) regs.$(O) regdis.$(O) \
60 disp8.$(O) iflag.$(O)
61 #-- End File Lists --#
63 all: nasm$(X) ndisasm$(X)
64 rem cd rdoff && $(MAKE) all
66 nasm$(X): $(NASM)
67 $(CC) $(LDFLAGS) /Fenasm$(X) $(NASM) $(LIBS)
69 ndisasm$(X): $(NDISASM)
70 $(CC) $(LDFLAGS) /Fendisasm$(X) $(NDISASM) $(LIBS)
72 # These source files are automagically generated from a single
73 # instruction-table file by a Perl script. They're distributed,
74 # though, so it isn't necessary to have Perl just to recompile NASM
75 # from the distribution.
77 insns.pl: insns-iflags.pl
79 INSDEP = insns.dat insns.pl insns-iflags.pl
81 iflag.c: $(INSDEP)
82 $(PERL) $(srcdir)/insns.pl -fc $(srcdir)/insns.dat
83 iflaggen.h: $(INSDEP)
84 $(PERL) $(srcdir)/insns.pl -fh $(srcdir)/insns.dat
85 insnsb.c: $(INSDEP)
86 $(PERL) $(srcdir)/insns.pl -b $(srcdir)/insns.dat
87 insnsa.c: $(INSDEP)
88 $(PERL) $(srcdir)/insns.pl -a $(srcdir)/insns.dat
89 insnsd.c: $(INSDEP)
90 $(PERL) $(srcdir)/insns.pl -d $(srcdir)/insns.dat
91 insnsi.h: $(INSDEP)
92 $(PERL) $(srcdir)/insns.pl -i $(srcdir)/insns.dat
93 insnsn.c: $(INSDEP)
94 $(PERL) $(srcdir)/insns.pl -n $(srcdir)/insns.dat
96 # These files contains all the standard macros that are derived from
97 # the version number.
98 version.h: version version.pl
99 $(PERL) $(srcdir)/version.pl h < $(srcdir)/version > version.h
101 version.mac: version version.pl
102 $(PERL) $(srcdir)/version.pl mac < $(srcdir)/version > version.mac
104 # This source file is generated from the standard macros file
105 # `standard.mac' by another Perl script. Again, it's part of the
106 # standard distribution.
108 macros.c: macros.pl pptok.ph standard.mac version.mac \
109 $(srcdir)/macros/*.mac $(srcdir)/output/*.mac
110 $(PERL) $(srcdir)/macros.pl $(srcdir)/standard.mac version.mac \
111 $(srcdir)/macros/*.mac $(srcdir)/output/*.mac
113 # These source files are generated from regs.dat by yet another
114 # perl script.
115 regs.c: regs.dat regs.pl
116 $(PERL) $(srcdir)/regs.pl c $(srcdir)/regs.dat > regs.c
117 regflags.c: regs.dat regs.pl
118 $(PERL) $(srcdir)/regs.pl fc $(srcdir)/regs.dat > regflags.c
119 regdis.c: regs.dat regs.pl
120 $(PERL) $(srcdir)/regs.pl dc $(srcdir)/regs.dat > regdis.c
121 regdis.h: regs.dat regs.pl
122 $(PERL) $(srcdir)/regs.pl dh $(srcdir)/regs.dat > regdis.h
123 regvals.c: regs.dat regs.pl
124 $(PERL) $(srcdir)/regs.pl vc $(srcdir)/regs.dat > regvals.c
125 regs.h: regs.dat regs.pl
126 $(PERL) $(srcdir)/regs.pl h $(srcdir)/regs.dat > regs.h
128 # Assembler token hash
129 tokhash.c: insns.dat regs.dat tokens.dat tokhash.pl perllib/phash.ph
130 $(PERL) $(srcdir)/tokhash.pl c $(srcdir)/insns.dat $(srcdir)/regs.dat \
131 $(srcdir)/tokens.dat > tokhash.c
133 # Assembler token metadata
134 tokens.h: insns.dat regs.dat tokens.dat tokhash.pl perllib/phash.ph
135 $(PERL) $(srcdir)/tokhash.pl h $(srcdir)/insns.dat $(srcdir)/regs.dat \
136 $(srcdir)/tokens.dat > tokens.h
138 # Preprocessor token hash
139 pptok.h: pptok.dat pptok.pl perllib/phash.ph
140 $(PERL) $(srcdir)/pptok.pl h $(srcdir)/pptok.dat pptok.h
141 pptok.c: pptok.dat pptok.pl perllib/phash.ph
142 $(PERL) $(srcdir)/pptok.pl c $(srcdir)/pptok.dat pptok.c
143 pptok.ph: pptok.dat pptok.pl perllib/phash.ph
144 $(PERL) $(srcdir)/pptok.pl ph $(srcdir)/pptok.dat pptok.ph
146 # Directives hash
147 directiv.h: directiv.dat directiv.pl perllib/phash.ph
148 $(PERL) $(srcdir)/directiv.pl h $(srcdir)/directiv.dat directiv.h
149 directiv.c: directiv.dat directiv.pl perllib/phash.ph
150 $(PERL) $(srcdir)/directiv.pl c $(srcdir)/directiv.dat directiv.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 regvals.c tokhash.c tokens.h \
156 version.h version.mac pptok.h pptok.c iflag.c iflag.h
157 perlreq: $(PERLREQ)
159 clean:
160 -del /f *.$(O)
161 -del /f *.s
162 -del /f *.i
163 -del /f lib\*.$(O)
164 -del /f lib\*.s
165 -del /f lib\*.i
166 -del /f output\*.$(O)
167 -del /f output\*.s
168 -del /f output\*.i
169 -del /f nasm$(X)
170 -del /f ndisasm$(X)
171 rem cd rdoff && $(MAKE) clean
173 distclean: clean
174 -del /f config.h
175 -del /f config.log
176 -del /f config.status
177 -del /f Makefile
178 -del /f *~
179 -del /f *.bak
180 -del /f *.lst
181 -del /f *.bin
182 -del /f output\*~
183 -del /f output\*.bak
184 -del /f test\*.lst
185 -del /f test\*.bin
186 -del /f test\*.$(O)
187 -del /f test\*.bin
188 -del /f/s autom4te*.cache
189 rem cd rdoff && $(MAKE) distclean
191 cleaner: clean
192 -del /f $(PERLREQ)
193 -del /f *.man
194 -del /f nasm.spec
195 rem cd doc && $(MAKE) clean
197 spotless: distclean cleaner
198 -del /f doc\Makefile
199 -del doc\*~
200 -del doc\*.bak
202 strip:
204 rdf:
205 # cd rdoff && $(MAKE)
207 doc:
208 # cd doc && $(MAKE) all
210 everything: all doc rdf
212 #-- Magic hints to mkdep.pl --#
213 # @object-ending: ".$(O)"
214 # @path-separator: "/"
215 # @exclude: "config.h"
216 #-- Everything below is generated by mkdep.pl - do not edit --#
217 assemble.$(O): assemble.c assemble.h compiler.h directiv.h disp8.h iflag.h \
218 iflaggen.h insns.h insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h \
219 regs.h tables.h tokens.h
220 crc64.$(O): crc64.c compiler.h nasmlib.h
221 directiv.$(O): directiv.c compiler.h directiv.h hashtbl.h insnsi.h nasm.h \
222 nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
223 disasm.$(O): disasm.c compiler.h directiv.h disasm.h disp8.h iflag.h \
224 iflaggen.h insns.h insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h \
225 regdis.h regs.h sync.h tables.h tokens.h
226 disp8.$(O): disp8.c compiler.h directiv.h disp8.h insnsi.h nasm.h nasmlib.h \
227 opflags.h pptok.h preproc.h regs.h tables.h
228 eval.$(O): eval.c compiler.h directiv.h eval.h float.h insnsi.h labels.h \
229 nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
230 exprlib.$(O): exprlib.c compiler.h directiv.h insnsi.h nasm.h nasmlib.h \
231 opflags.h pptok.h preproc.h regs.h tables.h
232 float.$(O): float.c compiler.h directiv.h float.h insnsi.h nasm.h nasmlib.h \
233 opflags.h pptok.h preproc.h regs.h tables.h
234 hashtbl.$(O): hashtbl.c compiler.h directiv.h hashtbl.h insnsi.h nasm.h \
235 nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
236 iflag.$(O): iflag.c compiler.h iflag.h iflaggen.h
237 ilog2.$(O): ilog2.c compiler.h nasmlib.h
238 insnsa.$(O): insnsa.c compiler.h directiv.h iflag.h iflaggen.h insns.h \
239 insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h \
240 tokens.h
241 insnsb.$(O): insnsb.c compiler.h directiv.h iflag.h iflaggen.h insns.h \
242 insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h \
243 tokens.h
244 insnsd.$(O): insnsd.c compiler.h directiv.h iflag.h iflaggen.h insns.h \
245 insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h \
246 tokens.h
247 insnsn.$(O): insnsn.c compiler.h insnsi.h tables.h
248 labels.$(O): labels.c compiler.h directiv.h hashtbl.h insnsi.h nasm.h \
249 nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
250 lib/snprintf.$(O): lib/snprintf.c compiler.h nasmlib.h
251 lib/strlcpy.$(O): lib/strlcpy.c compiler.h
252 lib/vsnprintf.$(O): lib/vsnprintf.c compiler.h nasmlib.h
253 listing.$(O): listing.c compiler.h directiv.h insnsi.h listing.h nasm.h \
254 nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
255 macros.$(O): macros.c compiler.h directiv.h hashtbl.h insnsi.h nasm.h \
256 nasmlib.h opflags.h output/outform.h pptok.h preproc.h regs.h tables.h
257 nasm.$(O): nasm.c assemble.h compiler.h directiv.h eval.h float.h iflag.h \
258 iflaggen.h insns.h insnsi.h labels.h listing.h nasm.h nasmlib.h opflags.h \
259 output/outform.h parser.h pptok.h preproc.h raa.h regs.h saa.h stdscan.h \
260 tables.h tokens.h
261 nasmlib.$(O): nasmlib.c compiler.h directiv.h iflag.h iflaggen.h insns.h \
262 insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h \
263 tokens.h
264 ndisasm.$(O): ndisasm.c compiler.h directiv.h disasm.h iflag.h iflaggen.h \
265 insns.h insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h sync.h \
266 tables.h tokens.h
267 output/nulldbg.$(O): output/nulldbg.c compiler.h directiv.h insnsi.h nasm.h \
268 nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
269 output/nullout.$(O): output/nullout.c compiler.h directiv.h insnsi.h nasm.h \
270 nasmlib.h opflags.h output/outlib.h pptok.h preproc.h regs.h tables.h
271 output/outaout.$(O): output/outaout.c compiler.h directiv.h eval.h insnsi.h \
272 nasm.h nasmlib.h opflags.h output/outform.h output/outlib.h pptok.h \
273 preproc.h raa.h regs.h saa.h stdscan.h tables.h
274 output/outas86.$(O): output/outas86.c compiler.h directiv.h insnsi.h nasm.h \
275 nasmlib.h opflags.h output/outform.h output/outlib.h pptok.h preproc.h \
276 raa.h regs.h saa.h tables.h
277 output/outbin.$(O): output/outbin.c compiler.h directiv.h eval.h insnsi.h \
278 labels.h nasm.h nasmlib.h opflags.h output/outform.h output/outlib.h \
279 pptok.h preproc.h regs.h saa.h stdscan.h tables.h
280 output/outcoff.$(O): output/outcoff.c compiler.h directiv.h eval.h insnsi.h \
281 nasm.h nasmlib.h opflags.h output/outform.h output/outlib.h output/pecoff.h \
282 pptok.h preproc.h raa.h regs.h saa.h tables.h
283 output/outdbg.$(O): output/outdbg.c compiler.h directiv.h insnsi.h nasm.h \
284 nasmlib.h opflags.h output/outform.h pptok.h preproc.h regs.h tables.h
285 output/outelf.$(O): output/outelf.c compiler.h directiv.h insnsi.h nasm.h \
286 nasmlib.h opflags.h output/dwarf.h output/elf.h output/outelf.h \
287 output/outform.h pptok.h preproc.h regs.h tables.h
288 output/outelf32.$(O): output/outelf32.c compiler.h directiv.h eval.h \
289 insnsi.h nasm.h nasmlib.h opflags.h output/dwarf.h output/elf.h \
290 output/outelf.h output/outform.h output/outlib.h output/stabs.h pptok.h \
291 preproc.h raa.h rbtree.h regs.h saa.h stdscan.h tables.h
292 output/outelf64.$(O): output/outelf64.c compiler.h directiv.h eval.h \
293 insnsi.h nasm.h nasmlib.h opflags.h output/dwarf.h output/elf.h \
294 output/outelf.h output/outform.h output/outlib.h output/stabs.h pptok.h \
295 preproc.h raa.h rbtree.h regs.h saa.h stdscan.h tables.h
296 output/outelfx32.$(O): output/outelfx32.c compiler.h directiv.h eval.h \
297 insnsi.h nasm.h nasmlib.h opflags.h output/dwarf.h output/elf.h \
298 output/outelf.h output/outform.h output/outlib.h output/stabs.h pptok.h \
299 preproc.h raa.h rbtree.h regs.h saa.h stdscan.h tables.h
300 output/outform.$(O): output/outform.c compiler.h directiv.h insnsi.h nasm.h \
301 nasmlib.h opflags.h output/outform.h pptok.h preproc.h regs.h tables.h
302 output/outieee.$(O): output/outieee.c compiler.h directiv.h insnsi.h nasm.h \
303 nasmlib.h opflags.h output/outform.h output/outlib.h pptok.h preproc.h \
304 regs.h tables.h
305 output/outlib.$(O): output/outlib.c compiler.h directiv.h insnsi.h nasm.h \
306 nasmlib.h opflags.h output/outlib.h pptok.h preproc.h regs.h tables.h
307 output/outmac32.$(O): output/outmac32.c compiler.h directiv.h eval.h \
308 insnsi.h nasm.h nasmlib.h opflags.h output/outform.h output/outlib.h \
309 pptok.h preproc.h raa.h regs.h saa.h tables.h
310 output/outmac64.$(O): output/outmac64.c compiler.h directiv.h insnsi.h \
311 nasm.h nasmlib.h opflags.h output/outform.h output/outlib.h pptok.h \
312 preproc.h raa.h regs.h saa.h tables.h
313 output/outobj.$(O): output/outobj.c compiler.h directiv.h eval.h insnsi.h \
314 nasm.h nasmlib.h opflags.h output/outform.h output/outlib.h pptok.h \
315 preproc.h regs.h stdscan.h tables.h
316 output/outrdf2.$(O): output/outrdf2.c compiler.h directiv.h insnsi.h nasm.h \
317 nasmlib.h opflags.h output/outform.h output/outlib.h pptok.h preproc.h \
318 rdoff/rdoff.h regs.h saa.h tables.h
319 parser.$(O): parser.c compiler.h directiv.h eval.h float.h iflag.h \
320 iflaggen.h insns.h insnsi.h nasm.h nasmlib.h opflags.h parser.h pptok.h \
321 preproc.h regs.h stdscan.h tables.h tokens.h
322 pptok.$(O): pptok.c compiler.h hashtbl.h nasmlib.h pptok.h preproc.h
323 preproc-nop.$(O): preproc-nop.c compiler.h directiv.h insnsi.h nasm.h \
324 nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
325 preproc.$(O): preproc.c compiler.h directiv.h eval.h hashtbl.h insnsi.h \
326 nasm.h nasmlib.h opflags.h pptok.h preproc.h quote.h regs.h stdscan.h \
327 tables.h tokens.h
328 quote.$(O): quote.c compiler.h nasmlib.h quote.h
329 raa.$(O): raa.c compiler.h nasmlib.h raa.h
330 rbtree.$(O): rbtree.c compiler.h rbtree.h
331 regdis.$(O): regdis.c regdis.h regs.h
332 regflags.$(O): regflags.c compiler.h directiv.h insnsi.h nasm.h nasmlib.h \
333 opflags.h pptok.h preproc.h regs.h tables.h
334 regs.$(O): regs.c compiler.h insnsi.h tables.h
335 regvals.$(O): regvals.c compiler.h insnsi.h tables.h
336 saa.$(O): saa.c compiler.h nasmlib.h saa.h
337 stdscan.$(O): stdscan.c compiler.h directiv.h iflag.h iflaggen.h insns.h \
338 insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h quote.h regs.h \
339 stdscan.h tables.h tokens.h
340 strfunc.$(O): strfunc.c compiler.h directiv.h insnsi.h nasm.h nasmlib.h \
341 opflags.h pptok.h preproc.h regs.h tables.h
342 sync.$(O): sync.c compiler.h nasmlib.h sync.h
343 tokhash.$(O): tokhash.c compiler.h directiv.h hashtbl.h iflag.h iflaggen.h \
344 insns.h insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h \
345 tables.h tokens.h
346 ver.$(O): ver.c compiler.h directiv.h insnsi.h nasm.h nasmlib.h opflags.h \
347 pptok.h preproc.h regs.h tables.h version.h