Merge remote-tracking branch 'origin/nasm-2.12.xx'
[nasm.git] / Makefile.in
blobffe21cb41334d23272616bcd2ea1d4113a566ce0
2 # Auto-configuring Makefile for the Netwide Assembler.
4 # The Netwide Assembler is copyright (C) 1996 Simon Tatham and
5 # Julian Hall. All rights reserved. The software is
6 # redistributable under the license given in the file "LICENSE"
7 # distributed in the NASM archive.
9 @SET_MAKE@
11 top_srcdir = @top_srcdir@
12 srcdir = @srcdir@
13 objdir = @builddir@
14 VPATH = @srcdir@
15 prefix = @prefix@
16 exec_prefix = @exec_prefix@
17 bindir = @bindir@
18 mandir = @mandir@
19 datarootdir = @datarootdir@
21 CC = @CC@
22 CFLAGS = @CFLAGS@
23 BUILD_CFLAGS = $(CFLAGS) @DEFS@
24 INTERNAL_CFLAGS = -I$(srcdir) -I$(objdir) \
25 -I$(srcdir)/include -I$(objdir)/include \
26 -I$(srcdir)/x86 -I$(objdir)/x86 \
27 -I$(srcdir)/asm -I$(objdir)/asm \
28 -I$(srcdir)/disasm -I$(objdir)/disasm \
29 -I$(srcdir)/output -I$(objdir)/output
30 ALL_CFLAGS = $(BUILD_CFLAGS) $(INTERNAL_CFLAGS)
31 LDFLAGS = @LDFLAGS@
32 LIBS = @LIBS@
34 AR = @AR@
35 RANLIB = @RANLIB@
36 STRIP = @STRIP@
38 PERL = perl
39 PERLFLAGS = -I$(srcdir)/perllib -I$(srcdir)
40 RUNPERL = $(PERL) $(PERLFLAGS)
42 INSTALL = @INSTALL@
43 INSTALL_PROGRAM = @INSTALL_PROGRAM@
44 INSTALL_DATA = @INSTALL_DATA@
46 NROFF = @NROFF@
47 ASCIIDOC = @ASCIIDOC@
48 XMLTO = @XMLTO@
50 MAKENSIS = makensis
52 MKDIR = mkdir
53 RM = rm
54 FIND = find
56 # Binary suffixes
57 O = @OBJEXT@
58 X = @EXEEXT@
59 A = @LIBEXT@
61 # Debug stuff
62 ifeq ($(TRACE),1)
63 CFLAGS += -DNASM_TRACE
64 endif
66 .SUFFIXES: .c .i .s .$(O) .$(A) .1 .txt .xml
68 .PHONY: all doc rdf install clean distclean cleaner spotless install_rdf test
69 .PHONY: install_doc everything install_everything strip perlreq dist tags TAGS
70 .PHONY: manpages nsis
72 .c.$(O):
73 $(CC) -c $(ALL_CFLAGS) -o $@ $<
75 .c.s:
76 $(CC) -S $(ALL_CFLAGS) -o $@ $<
78 .c.i:
79 $(CC) -E $(ALL_CFLAGS) -o $@ $<
81 .txt.xml:
82 $(ASCIIDOC) -b docbook -d manpage -o $@ $<
84 .xml.1:
85 $(XMLTO) man --skip-validation $< 2>/dev/null
87 #-- Begin File Lists --#
88 NASM = asm/nasm.$(O) \
89 asm/float.$(O) \
90 asm/directiv.$(O) \
91 asm/assemble.$(O) asm/labels.$(O) asm/parser.$(O) \
92 asm/preproc.$(O) asm/quote.$(O) asm/pptok.$(O) \
93 asm/listing.$(O) asm/eval.$(O) asm/exprlib.$(O) \
94 asm/stdscan.$(O) \
95 asm/strfunc.$(O) asm/tokhash.$(O) \
96 asm/segalloc.$(O) \
97 asm/preproc-nop.$(O) \
98 asm/rdstrnum.$(O) \
100 macros/macros.$(O) \
102 output/outform.$(O) output/outlib.$(O) output/nulldbg.$(O) \
103 output/nullout.$(O) \
104 output/outbin.$(O) output/outaout.$(O) output/outcoff.$(O) \
105 output/outelf.$(O) \
106 output/outobj.$(O) output/outas86.$(O) output/outrdf2.$(O) \
107 output/outdbg.$(O) output/outieee.$(O) output/outmacho.$(O) \
108 output/codeview.$(O)
110 NDISASM = disasm/ndisasm.$(O) disasm/disasm.$(O) disasm/sync.$(O)
112 LIBOBJ = stdlib/snprintf.$(O) stdlib/vsnprintf.$(O) stdlib/strlcpy.$(O) \
113 stdlib/strnlen.$(O) \
114 nasmlib/ver.$(O) \
115 nasmlib/crc64.$(O) nasmlib/malloc.$(O) \
116 nasmlib/error.$(O) nasmlib/md5c.$(O) nasmlib/string.$(O) \
117 nasmlib/file.$(O) nasmlib/ilog2.$(O) \
118 nasmlib/realpath.$(O) nasmlib/filename.$(O) nasmlib/srcfile.$(O) \
119 nasmlib/zerobuf.$(O) nasmlib/readnum.$(O) nasmlib/bsi.$(O) \
120 nasmlib/rbtree.$(O) nasmlib/hashtbl.$(O) \
121 nasmlib/raa.$(O) nasmlib/saa.$(O) \
122 common/common.$(O) \
123 x86/insnsa.$(O) x86/insnsb.$(O) x86/insnsd.$(O) x86/insnsn.$(O) \
124 x86/regs.$(O) x86/regvals.$(O) x86/regflags.$(O) x86/regdis.$(O) \
125 x86/disp8.$(O) x86/iflag.$(O)
126 #-- End File Lists --#
128 all: nasm$(X) ndisasm$(X) rdf
130 NASMLIB = libnasm.$(A)
132 $(NASMLIB): $(LIBOBJ)
133 $(RM) -f $(NASMLIB)
134 $(AR) cq $(NASMLIB) $(LIBOBJ)
135 $(RANLIB) $(NASMLIB)
137 nasm$(X): $(NASM) $(NASMLIB)
138 $(CC) $(LDFLAGS) -o nasm$(X) $(NASM) $(NASMLIB) $(LIBS)
140 ndisasm$(X): $(NDISASM) $(NASMLIB)
141 $(CC) $(LDFLAGS) -o ndisasm$(X) $(NDISASM) $(NASMLIB) $(LIBS)
143 # These source files are automagically generated from a single
144 # instruction-table file by a Perl script. They're distributed,
145 # though, so it isn't necessary to have Perl just to recompile NASM
146 # from the distribution.
147 INSDEP = x86/insns.dat x86/insns.pl
149 x86/iflag.c: $(INSDEP)
150 $(RUNPERL) $(srcdir)/x86/insns.pl -fc \
151 $(srcdir)/x86/insns.dat x86/iflag.c
152 x86/iflaggen.h: $(INSDEP)
153 $(RUNPERL) $(srcdir)/x86/insns.pl -fh \
154 $(srcdir)/x86/insns.dat x86/iflaggen.h
155 x86/insnsb.c: $(INSDEP)
156 $(RUNPERL) $(srcdir)/x86/insns.pl -b \
157 $(srcdir)/x86/insns.dat x86/insnsb.c
158 x86/insnsa.c: $(INSDEP)
159 $(RUNPERL) $(srcdir)/x86/insns.pl -a \
160 $(srcdir)/x86/insns.dat x86/insnsa.c
161 x86/insnsd.c: $(INSDEP)
162 $(RUNPERL) $(srcdir)/x86/insns.pl -d \
163 $(srcdir)/x86/insns.dat x86/insnsd.c
164 x86/insnsi.h: $(INSDEP)
165 $(RUNPERL) $(srcdir)/x86/insns.pl -i \
166 $(srcdir)/x86/insns.dat x86/insnsi.h
167 x86/insnsn.c: $(INSDEP)
168 $(RUNPERL) $(srcdir)/x86/insns.pl -n \
169 $(srcdir)/x86/insns.dat x86/insnsn.c
171 # These files contains all the standard macros that are derived from
172 # the version number.
173 version.h: version version.pl
174 $(RUNPERL) $(srcdir)/version.pl h < $(srcdir)/version > version.h
175 version.mac: version version.pl
176 $(RUNPERL) $(srcdir)/version.pl mac < $(srcdir)/version > version.mac
177 version.sed: version version.pl
178 $(RUNPERL) $(srcdir)/version.pl sed < $(srcdir)/version > version.sed
179 version.mak: version version.pl
180 $(RUNPERL) $(srcdir)/version.pl make < $(srcdir)/version > version.mak
181 nsis/version.nsh: version version.pl
182 $(RUNPERL) $(srcdir)/version.pl nsis < $(srcdir)/version > nsis/version.nsh
184 # This source file is generated from the standard macros file
185 # `standard.mac' by another Perl script. Again, it's part of the
186 # standard distribution.
187 macros/macros.c: macros/macros.pl asm/pptok.ph version.mac \
188 $(srcdir)/macros/*.mac $(srcdir)/output/*.mac
189 $(RUNPERL) $(srcdir)/macros/macros.pl version.mac \
190 $(srcdir)/macros/*.mac $(srcdir)/output/*.mac
192 # These source files are generated from regs.dat by yet another
193 # perl script.
194 x86/regs.c: x86/regs.dat x86/regs.pl
195 $(RUNPERL) $(srcdir)/x86/regs.pl c \
196 $(srcdir)/x86/regs.dat > x86/regs.c
197 x86/regflags.c: x86/regs.dat x86/regs.pl
198 $(RUNPERL) $(srcdir)/x86/regs.pl fc \
199 $(srcdir)/x86/regs.dat > x86/regflags.c
200 x86/regdis.c: x86/regs.dat x86/regs.pl
201 $(RUNPERL) $(srcdir)/x86/regs.pl dc \
202 $(srcdir)/x86/regs.dat > x86/regdis.c
203 x86/regdis.h: x86/regs.dat x86/regs.pl
204 $(RUNPERL) $(srcdir)/x86/regs.pl dh \
205 $(srcdir)/x86/regs.dat > x86/regdis.h
206 x86/regvals.c: x86/regs.dat x86/regs.pl
207 $(RUNPERL) $(srcdir)/x86/regs.pl vc \
208 $(srcdir)/x86/regs.dat > x86/regvals.c
209 x86/regs.h: x86/regs.dat x86/regs.pl
210 $(RUNPERL) $(srcdir)/x86/regs.pl h \
211 $(srcdir)/x86/regs.dat > x86/regs.h
213 # Assembler token hash
214 asm/tokhash.c: x86/insns.dat x86/regs.dat asm/tokens.dat asm/tokhash.pl \
215 perllib/phash.ph
216 $(RUNPERL) $(srcdir)/asm/tokhash.pl c \
217 $(srcdir)/x86/insns.dat $(srcdir)/x86/regs.dat \
218 $(srcdir)/asm/tokens.dat > asm/tokhash.c
220 # Assembler token metadata
221 asm/tokens.h: x86/insns.dat x86/regs.dat asm/tokens.dat asm/tokhash.pl \
222 perllib/phash.ph
223 $(RUNPERL) $(srcdir)/asm/tokhash.pl h \
224 $(srcdir)/x86/insns.dat $(srcdir)/x86/regs.dat \
225 $(srcdir)/asm/tokens.dat > asm/tokens.h
227 # Preprocessor token hash
228 asm/pptok.h: asm/pptok.dat asm/pptok.pl perllib/phash.ph
229 $(RUNPERL) $(srcdir)/asm/pptok.pl h \
230 $(srcdir)/asm/pptok.dat asm/pptok.h
231 asm/pptok.c: asm/pptok.dat asm/pptok.pl perllib/phash.ph
232 $(RUNPERL) $(srcdir)/asm/pptok.pl c \
233 $(srcdir)/asm/pptok.dat asm/pptok.c
234 asm/pptok.ph: asm/pptok.dat asm/pptok.pl perllib/phash.ph
235 $(RUNPERL) $(srcdir)/asm/pptok.pl ph \
236 $(srcdir)/asm/pptok.dat asm/pptok.ph
238 # Directives hash
239 asm/directiv.h: asm/directiv.dat asm/directiv.pl perllib/phash.ph
240 $(RUNPERL) $(srcdir)/asm/directiv.pl h \
241 $(srcdir)/asm/directiv.dat asm/directiv.h
242 asm/directiv.c: asm/directiv.dat asm/directiv.pl perllib/phash.ph
243 $(RUNPERL) $(srcdir)/asm/directiv.pl c \
244 $(srcdir)/asm/directiv.dat asm/directiv.c
246 # This target generates all files that require perl.
247 # This allows easier generation of distribution (see dist target).
248 PERLREQ = x86/insnsb.c x86/insnsa.c x86/insnsd.c x86/insnsi.h x86/insnsn.c \
249 x86/regs.c x86/regs.h x86/regflags.c x86/regdis.c x86/regdis.h \
250 x86/regvals.c asm/tokhash.c asm/tokens.h asm/pptok.h asm/pptok.c \
251 x86/iflag.c x86/iflaggen.h \
252 macros/macros.c \
253 asm/pptok.ph asm/directiv.c asm/directiv.h \
254 version.h version.mac version.mak nsis/version.nsh
255 perlreq: $(PERLREQ)
257 # NSIS is not built except by explicit request, as it only applies to
258 # Windows platforms
259 nsis/arch.nsh: nsis/getpearch.pl nasm$(X)
260 $(PERL) $(srcdir)/nsis/getpearch.pl nasm$(X) > nsis/arch.nsh
262 # Should only be done after "make everything".
263 # The use of redirection here keeps makensis from moving the cwd to the
264 # source directory.
265 nsis: nsis/nasm.nsi nsis/arch.nsh nsis/version.nsh
266 $(MAKENSIS) -Dsrcdir="$(srcdir)" -Dobjdir="$(objdir)" - < "$<"
268 # Generated manpages, also pregenerated for distribution
269 manpages: nasm.1 ndisasm.1
271 install: nasm$(X) ndisasm$(X)
272 $(MKDIR) -p $(INSTALLROOT)$(bindir)
273 $(INSTALL_PROGRAM) nasm$(X) $(INSTALLROOT)$(bindir)/nasm$(X)
274 $(INSTALL_PROGRAM) ndisasm$(X) $(INSTALLROOT)$(bindir)/ndisasm$(X)
275 $(MKDIR) -p $(INSTALLROOT)$(mandir)/man1
276 $(INSTALL_DATA) $(srcdir)/nasm.1 $(INSTALLROOT)$(mandir)/man1/nasm.1
277 $(INSTALL_DATA) $(srcdir)/ndisasm.1 $(INSTALLROOT)$(mandir)/man1/ndisasm.1
279 clean:
280 for d in . stdlib nasmlib output asm disasm x86 common macros; do \
281 $(RM) -f "$$d"/*.$(O) "$$d"/*.s "$$d"/*.i "$$d"/*.$(A) ; \
282 done
283 $(RM) -f nasm$(X) ndisasm$(X)
284 $(RM) -f nasm-*-installer-*.exe
285 $(RM) -f tags TAGS
286 $(RM) -f nsis/arch.nsh
287 cd rdoff && $(MAKE) clean
289 distclean: clean
290 $(RM) -f config.h config.log config.status
291 $(RM) -f Makefile *~ *.bak *.lst *.bin
292 $(RM) -f output/*~ output/*.bak
293 $(RM) -f test/*.lst test/*.bin test/*.$(O) test/*.bin
294 $(RM) -rf autom4te*.cache
295 cd rdoff && $(MAKE) distclean
297 cleaner: clean
298 $(RM) -f $(PERLREQ) *.1 nasm.spec
299 cd doc && $(MAKE) clean
301 spotless: distclean cleaner
302 $(RM) -f doc/Makefile doc/*~ doc/*.bak
304 strip:
305 $(STRIP) --strip-unneeded nasm$(X) ndisasm$(X)
307 rdf: $(NASMLIB)
308 cd rdoff && $(MAKE) all
310 TAGS:
311 $(RM) -f TAGS
312 $(FIND) . -name '*.[hcS]' -print | xargs etags -a
314 tags:
315 $(RM) -f tags
316 $(FIND) . -name '*.[hcS]' -print | xargs ctags -a
318 cscope:
319 $(RM) -f cscope.out cscope.files
320 $(FIND) . -name '*.[hcS]' -print > cscope.files
321 cscope -b -f cscope.out
323 rdf_install install_rdf:
324 cd rdoff && $(MAKE) install
326 doc:
327 cd doc && $(MAKE) all
329 doc_install install_doc:
330 cd doc && $(MAKE) install
332 everything: all manpages doc rdf
334 install_everything: everything install install_doc install_rdf
336 dist:
337 $(MAKE) alldeps
338 $(MAKE) spotless perlreq manpages spec
339 autoheader
340 autoconf
341 $(RM) -rf ./autom4te*.cache
343 tar: dist
344 tar -cvj --exclude CVS -C .. -f ../nasm-`cat version`-`date +%Y%m%d`.tar.bz2 `basename \`pwd\``
346 spec: nasm.spec
348 nasm.spec: nasm.spec.in version.sed
349 sed -f version.sed < nasm.spec.in > nasm.spec
351 splint:
352 splint -weak *.c
354 test: nasm$(X)
355 cd test && $(RUNPERL) performtest.pl --nasm=../nasm *.asm
357 golden: nasm$(X)
358 cd test && $(RUNPERL) performtest.pl --golden --nasm=../nasm *.asm
361 # This build dependencies in *ALL* makefiles. Partially for that reason,
362 # it's expected to be invoked manually.
364 alldeps: perlreq tools/syncfiles.pl tools/mkdep.pl
365 $(RUNPERL) tools/syncfiles.pl Makefile.in Mkfiles/*.mak
366 $(RUNPERL) tools/mkdep.pl -M Makefile.in Mkfiles/*.mak -- \
367 . include asm common disasm macros nasmlib output stdlib x86
368 ./config.status
370 #-- Magic hints to mkdep.pl --#
371 # @object-ending: ".$(O)"
372 # @path-separator: "/"
373 #-- Everything below is generated by mkdep.pl - do not edit --#
374 asm/assemble.$(O): asm/assemble.c asm/assemble.h asm/directiv.h \
375 asm/listing.h asm/pptok.h asm/preproc.h asm/tokens.h config.h \
376 include/compiler.h include/disp8.h include/iflag.h include/insns.h \
377 include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
378 include/tables.h x86/iflaggen.h x86/insnsi.h x86/regs.h
379 asm/directiv.$(O): asm/directiv.c asm/directiv.h asm/pptok.h asm/preproc.h \
380 config.h include/compiler.h include/hashtbl.h include/nasm.h \
381 include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
382 x86/insnsi.h x86/regs.h
383 asm/eval.$(O): asm/eval.c asm/directiv.h asm/eval.h asm/float.h asm/pptok.h \
384 asm/preproc.h config.h include/compiler.h include/labels.h include/nasm.h \
385 include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
386 x86/insnsi.h x86/regs.h
387 asm/exprlib.$(O): asm/exprlib.c asm/directiv.h asm/pptok.h asm/preproc.h \
388 config.h include/compiler.h include/nasm.h include/nasmint.h \
389 include/nasmlib.h include/opflags.h include/tables.h x86/insnsi.h \
390 x86/regs.h
391 asm/float.$(O): asm/float.c asm/directiv.h asm/float.h asm/pptok.h \
392 asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
393 include/nasmlib.h include/opflags.h include/tables.h x86/insnsi.h \
394 x86/regs.h
395 asm/labels.$(O): asm/labels.c asm/directiv.h asm/pptok.h asm/preproc.h \
396 config.h include/compiler.h include/hashtbl.h include/labels.h \
397 include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
398 include/tables.h x86/insnsi.h x86/regs.h
399 asm/listing.$(O): asm/listing.c asm/directiv.h asm/listing.h asm/pptok.h \
400 asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
401 include/nasmlib.h include/opflags.h include/tables.h x86/insnsi.h \
402 x86/regs.h
403 asm/nasm.$(O): asm/nasm.c asm/assemble.h asm/directiv.h asm/eval.h \
404 asm/float.h asm/listing.h asm/parser.h asm/pptok.h asm/preproc.h \
405 asm/stdscan.h asm/tokens.h config.h include/compiler.h include/iflag.h \
406 include/insns.h include/labels.h include/nasm.h include/nasmint.h \
407 include/nasmlib.h include/opflags.h include/raa.h include/saa.h \
408 include/tables.h include/ver.h output/outform.h x86/iflaggen.h x86/insnsi.h \
409 x86/regs.h
410 asm/parser.$(O): asm/parser.c asm/directiv.h asm/eval.h asm/float.h \
411 asm/parser.h asm/pptok.h asm/preproc.h asm/stdscan.h asm/tokens.h config.h \
412 include/compiler.h include/iflag.h include/insns.h include/nasm.h \
413 include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
414 x86/iflaggen.h x86/insnsi.h x86/regs.h
415 asm/pptok.$(O): asm/pptok.c asm/pptok.h asm/preproc.h config.h \
416 include/compiler.h include/hashtbl.h include/nasmint.h include/nasmlib.h
417 asm/preproc-nop.$(O): asm/preproc-nop.c asm/directiv.h asm/listing.h \
418 asm/pptok.h asm/preproc.h config.h include/compiler.h include/nasm.h \
419 include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
420 x86/insnsi.h x86/regs.h
421 asm/preproc.$(O): asm/preproc.c asm/directiv.h asm/eval.h asm/listing.h \
422 asm/pptok.h asm/preproc.h asm/quote.h asm/stdscan.h asm/tokens.h config.h \
423 include/compiler.h include/hashtbl.h include/nasm.h include/nasmint.h \
424 include/nasmlib.h include/opflags.h include/tables.h x86/insnsi.h \
425 x86/regs.h
426 asm/quote.$(O): asm/quote.c asm/quote.h config.h include/compiler.h \
427 include/nasmint.h include/nasmlib.h
428 asm/rdstrnum.$(O): asm/rdstrnum.c asm/directiv.h asm/pptok.h asm/preproc.h \
429 config.h include/compiler.h include/nasm.h include/nasmint.h \
430 include/nasmlib.h include/opflags.h include/tables.h x86/insnsi.h \
431 x86/regs.h
432 asm/segalloc.$(O): asm/segalloc.c asm/directiv.h asm/pptok.h asm/preproc.h \
433 asm/tokens.h config.h include/compiler.h include/iflag.h include/insns.h \
434 include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
435 include/tables.h x86/iflaggen.h x86/insnsi.h x86/regs.h
436 asm/stdscan.$(O): asm/stdscan.c asm/directiv.h asm/pptok.h asm/preproc.h \
437 asm/quote.h asm/stdscan.h asm/tokens.h config.h include/compiler.h \
438 include/iflag.h include/insns.h include/nasm.h include/nasmint.h \
439 include/nasmlib.h include/opflags.h include/tables.h x86/iflaggen.h \
440 x86/insnsi.h x86/regs.h
441 asm/strfunc.$(O): asm/strfunc.c asm/directiv.h asm/pptok.h asm/preproc.h \
442 config.h include/compiler.h include/nasm.h include/nasmint.h \
443 include/nasmlib.h include/opflags.h include/tables.h x86/insnsi.h \
444 x86/regs.h
445 asm/tokhash.$(O): asm/tokhash.c asm/directiv.h asm/pptok.h asm/preproc.h \
446 asm/stdscan.h asm/tokens.h config.h include/compiler.h include/hashtbl.h \
447 include/iflag.h include/insns.h include/nasm.h include/nasmint.h \
448 include/nasmlib.h include/opflags.h include/tables.h x86/iflaggen.h \
449 x86/insnsi.h x86/regs.h
450 common/common.$(O): common/common.c asm/directiv.h asm/pptok.h asm/preproc.h \
451 asm/tokens.h config.h include/compiler.h include/iflag.h include/insns.h \
452 include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
453 include/tables.h x86/iflaggen.h x86/insnsi.h x86/regs.h
454 disasm/disasm.$(O): disasm/disasm.c asm/directiv.h asm/pptok.h asm/preproc.h \
455 asm/tokens.h config.h disasm/disasm.h disasm/sync.h include/compiler.h \
456 include/disp8.h include/iflag.h include/insns.h include/nasm.h \
457 include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
458 x86/iflaggen.h x86/insnsi.h x86/regdis.h x86/regs.h
459 disasm/ndisasm.$(O): disasm/ndisasm.c asm/directiv.h asm/pptok.h \
460 asm/preproc.h asm/tokens.h config.h disasm/disasm.h disasm/sync.h \
461 include/compiler.h include/iflag.h include/insns.h include/nasm.h \
462 include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
463 include/ver.h x86/iflaggen.h x86/insnsi.h x86/regs.h
464 disasm/sync.$(O): disasm/sync.c config.h disasm/sync.h include/compiler.h \
465 include/nasmint.h include/nasmlib.h
466 macros/macros.$(O): macros/macros.c asm/directiv.h asm/pptok.h asm/preproc.h \
467 config.h include/compiler.h include/hashtbl.h include/nasm.h \
468 include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
469 output/outform.h x86/insnsi.h x86/regs.h
470 nasmlib/bsi.$(O): nasmlib/bsi.c config.h include/compiler.h \
471 include/nasmint.h include/nasmlib.h
472 nasmlib/crc64.$(O): nasmlib/crc64.c config.h include/compiler.h \
473 include/hashtbl.h include/nasmint.h include/nasmlib.h
474 nasmlib/error.$(O): nasmlib/error.c config.h include/compiler.h \
475 include/nasmint.h include/nasmlib.h
476 nasmlib/file.$(O): nasmlib/file.c config.h include/compiler.h \
477 include/nasmint.h include/nasmlib.h
478 nasmlib/filename.$(O): nasmlib/filename.c config.h include/compiler.h \
479 include/nasmint.h include/nasmlib.h
480 nasmlib/hashtbl.$(O): nasmlib/hashtbl.c asm/directiv.h asm/pptok.h \
481 asm/preproc.h config.h include/compiler.h include/hashtbl.h include/nasm.h \
482 include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
483 x86/insnsi.h x86/regs.h
484 nasmlib/ilog2.$(O): nasmlib/ilog2.c config.h include/compiler.h \
485 include/nasmint.h include/nasmlib.h
486 nasmlib/malloc.$(O): nasmlib/malloc.c config.h include/compiler.h \
487 include/nasmint.h include/nasmlib.h
488 nasmlib/md5c.$(O): nasmlib/md5c.c config.h include/compiler.h include/md5.h \
489 include/nasmint.h
490 nasmlib/raa.$(O): nasmlib/raa.c config.h include/compiler.h \
491 include/nasmint.h include/nasmlib.h include/raa.h
492 nasmlib/rbtree.$(O): nasmlib/rbtree.c config.h include/compiler.h \
493 include/nasmint.h include/rbtree.h
494 nasmlib/readnum.$(O): nasmlib/readnum.c asm/directiv.h asm/pptok.h \
495 asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
496 include/nasmlib.h include/opflags.h include/tables.h x86/insnsi.h \
497 x86/regs.h
498 nasmlib/realpath.$(O): nasmlib/realpath.c config.h include/compiler.h \
499 include/nasmint.h include/nasmlib.h
500 nasmlib/saa.$(O): nasmlib/saa.c config.h include/compiler.h \
501 include/nasmint.h include/nasmlib.h include/saa.h
502 nasmlib/srcfile.$(O): nasmlib/srcfile.c config.h include/compiler.h \
503 include/hashtbl.h include/nasmint.h include/nasmlib.h
504 nasmlib/string.$(O): nasmlib/string.c config.h include/compiler.h \
505 include/nasmint.h include/nasmlib.h
506 nasmlib/ver.$(O): nasmlib/ver.c include/ver.h version.h
507 nasmlib/zerobuf.$(O): nasmlib/zerobuf.c config.h include/compiler.h \
508 include/nasmint.h include/nasmlib.h
509 output/codeview.$(O): output/codeview.c asm/directiv.h asm/pptok.h \
510 asm/preproc.h config.h include/compiler.h include/hashtbl.h include/md5.h \
511 include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
512 include/saa.h include/tables.h output/outlib.h output/pecoff.h version.h \
513 x86/insnsi.h x86/regs.h
514 output/nulldbg.$(O): output/nulldbg.c asm/directiv.h asm/pptok.h \
515 asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
516 include/nasmlib.h include/opflags.h include/tables.h output/outlib.h \
517 x86/insnsi.h x86/regs.h
518 output/nullout.$(O): output/nullout.c asm/directiv.h asm/pptok.h \
519 asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
520 include/nasmlib.h include/opflags.h include/tables.h output/outlib.h \
521 x86/insnsi.h x86/regs.h
522 output/outaout.$(O): output/outaout.c asm/directiv.h asm/eval.h asm/pptok.h \
523 asm/preproc.h asm/stdscan.h config.h include/compiler.h include/nasm.h \
524 include/nasmint.h include/nasmlib.h include/opflags.h include/raa.h \
525 include/saa.h include/tables.h output/outform.h output/outlib.h \
526 x86/insnsi.h x86/regs.h
527 output/outas86.$(O): output/outas86.c asm/directiv.h asm/pptok.h \
528 asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
529 include/nasmlib.h include/opflags.h include/raa.h include/saa.h \
530 include/tables.h output/outform.h output/outlib.h x86/insnsi.h x86/regs.h
531 output/outbin.$(O): output/outbin.c asm/directiv.h asm/eval.h asm/pptok.h \
532 asm/preproc.h asm/stdscan.h config.h include/compiler.h include/labels.h \
533 include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
534 include/saa.h include/tables.h output/outform.h output/outlib.h \
535 x86/insnsi.h x86/regs.h
536 output/outcoff.$(O): output/outcoff.c asm/directiv.h asm/eval.h asm/pptok.h \
537 asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
538 include/nasmlib.h include/opflags.h include/raa.h include/saa.h \
539 include/tables.h output/outform.h output/outlib.h output/pecoff.h \
540 x86/insnsi.h x86/regs.h
541 output/outdbg.$(O): output/outdbg.c asm/directiv.h asm/pptok.h asm/preproc.h \
542 config.h include/compiler.h include/nasm.h include/nasmint.h \
543 include/nasmlib.h include/opflags.h include/tables.h output/outform.h \
544 x86/insnsi.h x86/regs.h
545 output/outelf.$(O): output/outelf.c asm/directiv.h asm/eval.h asm/pptok.h \
546 asm/preproc.h asm/stdscan.h config.h include/compiler.h include/nasm.h \
547 include/nasmint.h include/nasmlib.h include/opflags.h include/raa.h \
548 include/rbtree.h include/saa.h include/tables.h include/ver.h \
549 output/dwarf.h output/elf.h output/outelf.h output/outform.h \
550 output/outlib.h output/stabs.h x86/insnsi.h x86/regs.h
551 output/outform.$(O): output/outform.c asm/directiv.h asm/pptok.h \
552 asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
553 include/nasmlib.h include/opflags.h include/tables.h output/outform.h \
554 x86/insnsi.h x86/regs.h
555 output/outieee.$(O): output/outieee.c asm/directiv.h asm/pptok.h \
556 asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
557 include/nasmlib.h include/opflags.h include/tables.h include/ver.h \
558 output/outform.h output/outlib.h x86/insnsi.h x86/regs.h
559 output/outlib.$(O): output/outlib.c asm/directiv.h asm/pptok.h asm/preproc.h \
560 config.h include/compiler.h include/nasm.h include/nasmint.h \
561 include/nasmlib.h include/opflags.h include/tables.h output/outlib.h \
562 x86/insnsi.h x86/regs.h
563 output/outmacho.$(O): output/outmacho.c asm/directiv.h asm/pptok.h \
564 asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
565 include/nasmlib.h include/opflags.h include/raa.h include/rbtree.h \
566 include/saa.h include/tables.h output/outform.h output/outlib.h \
567 x86/insnsi.h x86/regs.h
568 output/outobj.$(O): output/outobj.c asm/directiv.h asm/eval.h asm/pptok.h \
569 asm/preproc.h asm/stdscan.h config.h include/compiler.h include/nasm.h \
570 include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
571 include/ver.h output/outform.h output/outlib.h x86/insnsi.h x86/regs.h
572 output/outrdf2.$(O): output/outrdf2.c asm/directiv.h asm/pptok.h \
573 asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
574 include/nasmlib.h include/opflags.h include/rdoff.h include/saa.h \
575 include/tables.h output/outform.h output/outlib.h x86/insnsi.h x86/regs.h
576 stdlib/snprintf.$(O): stdlib/snprintf.c config.h include/compiler.h \
577 include/nasmint.h include/nasmlib.h
578 stdlib/strlcpy.$(O): stdlib/strlcpy.c config.h include/compiler.h \
579 include/nasmint.h
580 stdlib/strnlen.$(O): stdlib/strnlen.c config.h include/compiler.h \
581 include/nasmint.h
582 stdlib/vsnprintf.$(O): stdlib/vsnprintf.c config.h include/compiler.h \
583 include/nasmint.h include/nasmlib.h
584 x86/disp8.$(O): x86/disp8.c asm/directiv.h asm/pptok.h asm/preproc.h \
585 config.h include/compiler.h include/disp8.h include/nasm.h \
586 include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
587 x86/insnsi.h x86/regs.h
588 x86/iflag.$(O): x86/iflag.c config.h include/compiler.h include/iflag.h \
589 include/nasmint.h x86/iflaggen.h
590 x86/insnsa.$(O): x86/insnsa.c asm/directiv.h asm/pptok.h asm/preproc.h \
591 asm/tokens.h config.h include/compiler.h include/iflag.h include/insns.h \
592 include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
593 include/tables.h x86/iflaggen.h x86/insnsi.h x86/regs.h
594 x86/insnsb.$(O): x86/insnsb.c asm/directiv.h asm/pptok.h asm/preproc.h \
595 asm/tokens.h config.h include/compiler.h include/iflag.h include/insns.h \
596 include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
597 include/tables.h x86/iflaggen.h x86/insnsi.h x86/regs.h
598 x86/insnsd.$(O): x86/insnsd.c asm/directiv.h asm/pptok.h asm/preproc.h \
599 asm/tokens.h config.h include/compiler.h include/iflag.h include/insns.h \
600 include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
601 include/tables.h x86/iflaggen.h x86/insnsi.h x86/regs.h
602 x86/insnsn.$(O): x86/insnsn.c config.h include/compiler.h include/nasmint.h \
603 include/tables.h x86/insnsi.h
604 x86/regdis.$(O): x86/regdis.c x86/regdis.h x86/regs.h
605 x86/regflags.$(O): x86/regflags.c asm/directiv.h asm/pptok.h asm/preproc.h \
606 config.h include/compiler.h include/nasm.h include/nasmint.h \
607 include/nasmlib.h include/opflags.h include/tables.h x86/insnsi.h \
608 x86/regs.h
609 x86/regs.$(O): x86/regs.c config.h include/compiler.h include/nasmint.h \
610 include/tables.h x86/insnsi.h
611 x86/regvals.$(O): x86/regvals.c config.h include/compiler.h \
612 include/nasmint.h include/tables.h x86/insnsi.h