version: call this branch 2.13rc0
[nasm.git] / Makefile.in
blob6ce5c7ccb9b0a7d1a0b5eff18884ffb5f7209142
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 top_srcdir = @top_srcdir@
10 srcdir = @srcdir@
11 VPATH = @srcdir@
12 prefix = @prefix@
13 exec_prefix = @exec_prefix@
14 bindir = @bindir@
15 mandir = @mandir@
16 datarootdir = @datarootdir@
18 CC = @CC@
19 CFLAGS = @CFLAGS@
20 BUILD_CFLAGS = $(CFLAGS) @DEFS@
21 INTERNAL_CFLAGS = -I$(srcdir) -I.
22 ALL_CFLAGS = $(BUILD_CFLAGS) $(INTERNAL_CFLAGS)
23 LDFLAGS = @LDFLAGS@
24 LIBS = @LIBS@
26 AR = @AR@
27 RANLIB = @RANLIB@
28 STRIP = @STRIP@
30 PERL = perl
31 PERLFLAGS = -I$(srcdir)/perllib
32 RUNPERL = $(PERL) $(PERLFLAGS)
34 INSTALL = @INSTALL@
35 INSTALL_PROGRAM = @INSTALL_PROGRAM@
36 INSTALL_DATA = @INSTALL_DATA@
38 NROFF = @NROFF@
39 ASCIIDOC = @ASCIIDOC@
40 XMLTO = @XMLTO@
42 MAKENSIS = makensis
44 MKDIR = mkdir
45 RM = rm
46 FIND = find
48 # Binary suffixes
49 O = @OBJEXT@
50 X = @EXEEXT@
51 A = a
53 # Debug stuff
54 ifeq ($(TRACE),1)
55 CFLAGS += -DNASM_TRACE
56 endif
58 .SUFFIXES: .c .i .s .$(O) .$(A) .1 .txt .xml
60 .PHONY: all doc rdf install clean distclean cleaner spotless install_rdf test
61 .PHONY: install_doc everything install_everything strip perlreq dist tags TAGS
62 .PHONY: manpages nsis
64 .c.$(O):
65 $(CC) -c $(ALL_CFLAGS) -o $@ $<
67 .c.s:
68 $(CC) -S $(ALL_CFLAGS) -o $@ $<
70 .c.i:
71 $(CC) -E $(ALL_CFLAGS) -o $@ $<
73 .txt.xml:
74 $(ASCIIDOC) -b docbook -d manpage -o $@ $<
76 .xml.1:
77 $(XMLTO) man --skip-validation $< 2>/dev/null
79 #-- Begin File Lists --#
80 NASM = nasm.$(O) \
81 raa.$(O) saa.$(O) rbtree.$(O) \
82 float.$(O) insnsa.$(O) insnsb.$(O) \
83 directiv.$(O) \
84 assemble.$(O) labels.$(O) hashtbl.$(O) parser.$(O) \
85 output/outform.$(O) output/outlib.$(O) output/nulldbg.$(O) \
86 output/nullout.$(O) \
87 output/outbin.$(O) output/outaout.$(O) output/outcoff.$(O) \
88 output/outelf.$(O) output/outelf32.$(O) output/outelf64.$(O) \
89 output/outelfx32.$(O) \
90 output/outobj.$(O) output/outas86.$(O) output/outrdf2.$(O) \
91 output/outdbg.$(O) output/outieee.$(O) output/outmacho.$(O) \
92 output/codeview.$(O) \
93 preproc.$(O) quote.$(O) pptok.$(O) \
94 macros.$(O) listing.$(O) eval.$(O) exprlib.$(O) stdscan.$(O) \
95 strfunc.$(O) tokhash.$(O) regvals.$(O) regflags.$(O) \
96 preproc-nop.$(O) \
97 disp8.$(O) \
98 iflag.$(O)
100 NDISASM = ndisasm.$(O) disasm.$(O) sync.$(O) \
101 insnsd.$(O) insnsb.$(O) insnsn.$(O) regs.$(O) regdis.$(O) \
102 disp8.$(O) iflag.$(O)
104 LIBOBJ = stdlib/snprintf.$(O) stdlib/vsnprintf.$(O) stdlib/strlcpy.$(O) \
105 nasmlib/nasmlib.$(O) nasmlib/ver.$(O) \
106 nasmlib/file.$(O) nasmlib/realpath.$(O) \
107 nasmlib/ilog2.$(O) nasmlib/md5c.$(O) nasmlib/crc64.$(O)
108 #-- End File Lists --#
110 all: nasm$(X) ndisasm$(X) rdf
112 NASMLIB = libnasm.$(A)
114 $(NASMLIB): $(LIBOBJ)
115 $(RM) -f $(NASMLIB)
116 $(AR) cq $(NASMLIB) $(LIBOBJ)
117 $(RANLIB) $(NASMLIB)
119 nasm$(X): $(NASM) $(NASMLIB)
120 $(CC) $(LDFLAGS) -o nasm$(X) $(NASM) $(NASMLIB) $(LIBS)
122 ndisasm$(X): $(NDISASM) $(NASMLIB)
123 $(CC) $(LDFLAGS) -o ndisasm$(X) $(NDISASM) $(NASMLIB) $(LIBS)
125 # These source files are automagically generated from a single
126 # instruction-table file by a Perl script. They're distributed,
127 # though, so it isn't necessary to have Perl just to recompile NASM
128 # from the distribution.
129 INSDEP = insns.dat insns.pl insns-iflags.pl
131 iflag.c: $(INSDEP)
132 $(RUNPERL) $(srcdir)/insns.pl -fc $(srcdir)/insns.dat
133 iflaggen.h: $(INSDEP)
134 $(RUNPERL) $(srcdir)/insns.pl -fh $(srcdir)/insns.dat
135 insnsb.c: $(INSDEP)
136 $(RUNPERL) $(srcdir)/insns.pl -b $(srcdir)/insns.dat
137 insnsa.c: $(INSDEP)
138 $(RUNPERL) $(srcdir)/insns.pl -a $(srcdir)/insns.dat
139 insnsd.c: $(INSDEP)
140 $(RUNPERL) $(srcdir)/insns.pl -d $(srcdir)/insns.dat
141 insnsi.h: $(INSDEP)
142 $(RUNPERL) $(srcdir)/insns.pl -i $(srcdir)/insns.dat
143 insnsn.c: $(INSDEP)
144 $(RUNPERL) $(srcdir)/insns.pl -n $(srcdir)/insns.dat
146 # These files contains all the standard macros that are derived from
147 # the version number.
148 version.h: version version.pl
149 $(RUNPERL) $(srcdir)/version.pl h < $(srcdir)/version > version.h
150 version.mac: version version.pl
151 $(RUNPERL) $(srcdir)/version.pl mac < $(srcdir)/version > version.mac
152 version.sed: version version.pl
153 $(RUNPERL) $(srcdir)/version.pl sed < $(srcdir)/version > version.sed
154 version.mak: version version.pl
155 $(RUNPERL) $(srcdir)/version.pl make < $(srcdir)/version > version.mak
156 nsis/version.nsh: version version.pl
157 $(RUNPERL) $(srcdir)/version.pl nsis < $(srcdir)/version > nsis/version.nsh
159 # This source file is generated from the standard macros file
160 # `standard.mac' by another Perl script. Again, it's part of the
161 # standard distribution.
162 macros.c: macros.pl pptok.ph standard.mac version.mac \
163 $(srcdir)/macros/*.mac $(srcdir)/output/*.mac
164 $(RUNPERL) $(srcdir)/macros.pl $(srcdir)/standard.mac version.mac \
165 $(srcdir)/macros/*.mac $(srcdir)/output/*.mac
167 # These source files are generated from regs.dat by yet another
168 # perl script.
169 regs.c: regs.dat regs.pl
170 $(RUNPERL) $(srcdir)/regs.pl c $(srcdir)/regs.dat > regs.c
171 regflags.c: regs.dat regs.pl
172 $(RUNPERL) $(srcdir)/regs.pl fc $(srcdir)/regs.dat > regflags.c
173 regdis.c: regs.dat regs.pl
174 $(RUNPERL) $(srcdir)/regs.pl dc $(srcdir)/regs.dat > regdis.c
175 regdis.h: regs.dat regs.pl
176 $(RUNPERL) $(srcdir)/regs.pl dh $(srcdir)/regs.dat > regdis.h
177 regvals.c: regs.dat regs.pl
178 $(RUNPERL) $(srcdir)/regs.pl vc $(srcdir)/regs.dat > regvals.c
179 regs.h: regs.dat regs.pl
180 $(RUNPERL) $(srcdir)/regs.pl h $(srcdir)/regs.dat > regs.h
182 # Assembler token hash
183 tokhash.c: insns.dat regs.dat tokens.dat tokhash.pl perllib/phash.ph
184 $(RUNPERL) $(srcdir)/tokhash.pl c $(srcdir)/insns.dat $(srcdir)/regs.dat \
185 $(srcdir)/tokens.dat > tokhash.c
187 # Assembler token metadata
188 tokens.h: insns.dat regs.dat tokens.dat tokhash.pl perllib/phash.ph
189 $(RUNPERL) $(srcdir)/tokhash.pl h $(srcdir)/insns.dat $(srcdir)/regs.dat \
190 $(srcdir)/tokens.dat > tokens.h
192 # Preprocessor token hash
193 pptok.h: pptok.dat pptok.pl perllib/phash.ph
194 $(RUNPERL) $(srcdir)/pptok.pl h $(srcdir)/pptok.dat pptok.h
195 pptok.c: pptok.dat pptok.pl perllib/phash.ph
196 $(RUNPERL) $(srcdir)/pptok.pl c $(srcdir)/pptok.dat pptok.c
197 pptok.ph: pptok.dat pptok.pl perllib/phash.ph
198 $(RUNPERL) $(srcdir)/pptok.pl ph $(srcdir)/pptok.dat pptok.ph
200 # Directives hash
201 directiv.h: directiv.dat directiv.pl perllib/phash.ph
202 $(RUNPERL) $(srcdir)/directiv.pl h $(srcdir)/directiv.dat directiv.h
203 directiv.c: directiv.dat directiv.pl perllib/phash.ph
204 $(RUNPERL) $(srcdir)/directiv.pl c $(srcdir)/directiv.dat directiv.c
206 # This target generates all files that require perl.
207 # This allows easier generation of distribution (see dist target).
208 PERLREQ = macros.c insnsb.c insnsa.c insnsd.c insnsi.h insnsn.c \
209 regs.c regs.h regflags.c regdis.c regdis.h regvals.c \
210 tokhash.c tokens.h pptok.h pptok.c pptok.ph \
211 directiv.c directiv.h \
212 iflag.c iflaggen.h \
213 version.h version.mac version.mak nsis/version.nsh
214 perlreq: $(PERLREQ)
216 # NSIS is not built except by explicit request, as it only applies to
217 # Windows platforms
218 nsis/arch.nsh: nsis/getpearch.pl nasm$(X)
219 $(PERL) $(srcdir)/nsis/getpearch.pl nasm$(X) > nsis/arch.nsh
221 # Should only be done after "make everything"
222 nsis: nsis/nasm.nsi nsis/arch.nsh nsis/version.nsh
223 $(MAKENSIS) nsis/nasm.nsi
225 # Generated manpages, also pregenerated for distribution
226 manpages: nasm.1 ndisasm.1
228 install: nasm$(X) ndisasm$(X)
229 $(MKDIR) -p $(INSTALLROOT)$(bindir)
230 $(INSTALL_PROGRAM) nasm$(X) $(INSTALLROOT)$(bindir)/nasm$(X)
231 $(INSTALL_PROGRAM) ndisasm$(X) $(INSTALLROOT)$(bindir)/ndisasm$(X)
232 $(MKDIR) -p $(INSTALLROOT)$(mandir)/man1
233 $(INSTALL_DATA) $(srcdir)/nasm.1 $(INSTALLROOT)$(mandir)/man1/nasm.1
234 $(INSTALL_DATA) $(srcdir)/ndisasm.1 $(INSTALLROOT)$(mandir)/man1/ndisasm.1
236 clean:
237 $(RM) -f *.$(O) *.s *.i *.$(A)
238 $(RM) -f stdlib/*.$(O) stdlib/*.s stdlib/*.i
239 $(RM) -f nasmlib/*.$(O) nasmlib/*.s nasmlib/*.i
240 $(RM) -f output/*.$(O) output/*.s output/*.i
241 $(RM) -f nasm$(X) ndisasm$(X)
242 $(RM) -f nasm-*-installer-*.exe
243 $(RM) -f tags TAGS
244 $(RM) -f nsis/arch.nsh
245 cd rdoff && $(MAKE) clean
247 distclean: clean
248 $(RM) -f config.h config.log config.status
249 $(RM) -f Makefile *~ *.bak *.lst *.bin
250 $(RM) -f output/*~ output/*.bak
251 $(RM) -f test/*.lst test/*.bin test/*.$(O) test/*.bin
252 $(RM) -rf autom4te*.cache
253 cd rdoff && $(MAKE) distclean
255 cleaner: clean
256 $(RM) -f $(PERLREQ) *.1 nasm.spec
257 cd doc && $(MAKE) clean
259 spotless: distclean cleaner
260 $(RM) -f doc/Makefile doc/*~ doc/*.bak
262 strip:
263 $(STRIP) --strip-unneeded nasm$(X) ndisasm$(X)
265 rdf: $(NASMLIB)
266 cd rdoff && $(MAKE) all
268 TAGS:
269 $(RM) -f TAGS
270 $(FIND) . -name '*.[hcS]' -print | xargs etags -a
272 tags:
273 $(RM) -f tags
274 $(FIND) . -name '*.[hcS]' -print | xargs ctags -a
276 cscope:
277 $(RM) -f cscope.out cscope.files
278 $(FIND) . -name '*.[hcS]' -print > cscope.files
279 cscope -b -f cscope.out
281 rdf_install install_rdf:
282 cd rdoff && $(MAKE) install
284 doc:
285 cd doc && $(MAKE) all
287 doc_install install_doc:
288 cd doc && $(MAKE) install
290 everything: all manpages doc rdf
292 install_everything: everything install install_doc install_rdf
294 dist:
295 $(MAKE) alldeps
296 $(MAKE) spotless perlreq manpages spec
297 autoheader
298 autoconf
299 $(RM) -rf ./autom4te*.cache
301 tar: dist
302 tar -cvj --exclude CVS -C .. -f ../nasm-`cat version`-`date +%Y%m%d`.tar.bz2 `basename \`pwd\``
304 spec: nasm.spec
306 nasm.spec: nasm.spec.in version.sed
307 sed -f version.sed < nasm.spec.in > nasm.spec
309 splint:
310 splint -weak *.c
312 test: nasm$(X)
313 cd test && $(RUNPERL) performtest.pl --nasm=../nasm *.asm
315 golden: nasm$(X)
316 cd test && $(RUNPERL) performtest.pl --golden --nasm=../nasm *.asm
319 # This build dependencies in *ALL* makefiles. Partially for that reason,
320 # it's expected to be invoked manually.
322 alldeps: perlreq
323 $(RUNPERL) syncfiles.pl Makefile.in Mkfiles/*.mak
324 $(RUNPERL) mkdep.pl -M Makefile.in Mkfiles/*.mak -- \
325 . output stdlib nasmlib
326 ./config.status
328 #-- Magic hints to mkdep.pl --#
329 # @object-ending: ".$(O)"
330 # @path-separator: "/"
331 #-- Everything below is generated by mkdep.pl - do not edit --#
332 assemble.$(O): assemble.c assemble.h compiler.h config.h directiv.h disp8.h \
333 iflag.h iflaggen.h insns.h insnsi.h listing.h nasm.h nasmint.h nasmlib.h \
334 opflags.h pptok.h preproc.h regs.h tables.h tokens.h
335 directiv.$(O): directiv.c compiler.h config.h directiv.h hashtbl.h insnsi.h \
336 nasm.h nasmint.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
337 disasm.$(O): disasm.c compiler.h config.h directiv.h disasm.h disp8.h \
338 iflag.h iflaggen.h insns.h insnsi.h nasm.h nasmint.h nasmlib.h opflags.h \
339 pptok.h preproc.h regdis.h regs.h sync.h tables.h tokens.h
340 disp8.$(O): disp8.c compiler.h config.h directiv.h disp8.h insnsi.h nasm.h \
341 nasmint.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
342 eval.$(O): eval.c compiler.h config.h directiv.h eval.h float.h insnsi.h \
343 labels.h nasm.h nasmint.h nasmlib.h opflags.h pptok.h preproc.h regs.h \
344 tables.h
345 exprlib.$(O): exprlib.c compiler.h config.h directiv.h insnsi.h nasm.h \
346 nasmint.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
347 float.$(O): float.c compiler.h config.h directiv.h float.h insnsi.h nasm.h \
348 nasmint.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
349 hashtbl.$(O): hashtbl.c compiler.h config.h directiv.h hashtbl.h insnsi.h \
350 nasm.h nasmint.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
351 iflag.$(O): iflag.c compiler.h config.h iflag.h iflaggen.h nasmint.h
352 insnsa.$(O): insnsa.c compiler.h config.h directiv.h iflag.h iflaggen.h \
353 insns.h insnsi.h nasm.h nasmint.h nasmlib.h opflags.h pptok.h preproc.h \
354 regs.h tables.h tokens.h
355 insnsb.$(O): insnsb.c compiler.h config.h directiv.h iflag.h iflaggen.h \
356 insns.h insnsi.h nasm.h nasmint.h nasmlib.h opflags.h pptok.h preproc.h \
357 regs.h tables.h tokens.h
358 insnsd.$(O): insnsd.c compiler.h config.h directiv.h iflag.h iflaggen.h \
359 insns.h insnsi.h nasm.h nasmint.h nasmlib.h opflags.h pptok.h preproc.h \
360 regs.h tables.h tokens.h
361 insnsn.$(O): insnsn.c compiler.h config.h insnsi.h nasmint.h tables.h
362 labels.$(O): labels.c compiler.h config.h directiv.h hashtbl.h insnsi.h \
363 labels.h nasm.h nasmint.h nasmlib.h opflags.h pptok.h preproc.h regs.h \
364 tables.h
365 listing.$(O): listing.c compiler.h config.h directiv.h insnsi.h listing.h \
366 nasm.h nasmint.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
367 macros.$(O): macros.c compiler.h config.h directiv.h hashtbl.h insnsi.h \
368 nasm.h nasmint.h nasmlib.h opflags.h output/outform.h pptok.h preproc.h \
369 regs.h tables.h
370 nasm.$(O): nasm.c assemble.h compiler.h config.h directiv.h eval.h float.h \
371 iflag.h iflaggen.h insns.h insnsi.h labels.h listing.h nasm.h nasmint.h \
372 nasmlib.h opflags.h output/outform.h parser.h pptok.h preproc.h raa.h \
373 regs.h saa.h stdscan.h tables.h tokens.h ver.h
374 nasmlib/crc64.$(O): nasmlib/crc64.c compiler.h config.h hashtbl.h nasmint.h \
375 nasmlib.h
376 nasmlib/file.$(O): nasmlib/file.c compiler.h config.h nasmint.h nasmlib.h
377 nasmlib/ilog2.$(O): nasmlib/ilog2.c compiler.h config.h nasmint.h nasmlib.h
378 nasmlib/md5c.$(O): nasmlib/md5c.c compiler.h config.h md5.h nasmint.h
379 nasmlib/nasmlib.$(O): nasmlib/nasmlib.c compiler.h config.h directiv.h \
380 iflag.h iflaggen.h insns.h insnsi.h nasm.h nasmint.h nasmlib.h opflags.h \
381 pptok.h preproc.h regs.h tables.h tokens.h
382 nasmlib/realpath.$(O): nasmlib/realpath.c compiler.h config.h nasmint.h \
383 nasmlib.h
384 nasmlib/ver.$(O): nasmlib/ver.c ver.h version.h
385 ndisasm.$(O): ndisasm.c compiler.h config.h directiv.h disasm.h iflag.h \
386 iflaggen.h insns.h insnsi.h nasm.h nasmint.h nasmlib.h opflags.h pptok.h \
387 preproc.h regs.h sync.h tables.h tokens.h ver.h
388 output/codeview.$(O): output/codeview.c compiler.h config.h directiv.h \
389 insnsi.h md5.h nasm.h nasmint.h nasmlib.h opflags.h output/outlib.h \
390 output/pecoff.h pptok.h preproc.h regs.h saa.h tables.h version.h
391 output/nulldbg.$(O): output/nulldbg.c compiler.h config.h directiv.h \
392 insnsi.h nasm.h nasmint.h nasmlib.h opflags.h output/outlib.h pptok.h \
393 preproc.h regs.h tables.h
394 output/nullout.$(O): output/nullout.c compiler.h config.h directiv.h \
395 insnsi.h nasm.h nasmint.h nasmlib.h opflags.h output/outlib.h pptok.h \
396 preproc.h regs.h tables.h
397 output/outaout.$(O): output/outaout.c compiler.h config.h directiv.h eval.h \
398 insnsi.h nasm.h nasmint.h nasmlib.h opflags.h output/outform.h \
399 output/outlib.h pptok.h preproc.h raa.h regs.h saa.h stdscan.h tables.h
400 output/outas86.$(O): output/outas86.c compiler.h config.h directiv.h \
401 insnsi.h nasm.h nasmint.h nasmlib.h opflags.h output/outform.h \
402 output/outlib.h pptok.h preproc.h raa.h regs.h saa.h tables.h
403 output/outbin.$(O): output/outbin.c compiler.h config.h directiv.h eval.h \
404 insnsi.h labels.h nasm.h nasmint.h nasmlib.h opflags.h output/outform.h \
405 output/outlib.h pptok.h preproc.h regs.h saa.h stdscan.h tables.h
406 output/outcoff.$(O): output/outcoff.c compiler.h config.h directiv.h eval.h \
407 insnsi.h nasm.h nasmint.h nasmlib.h opflags.h output/outform.h \
408 output/outlib.h output/pecoff.h pptok.h preproc.h raa.h regs.h saa.h \
409 tables.h
410 output/outdbg.$(O): output/outdbg.c compiler.h config.h directiv.h insnsi.h \
411 nasm.h nasmint.h nasmlib.h opflags.h output/outform.h pptok.h preproc.h \
412 regs.h tables.h
413 output/outelf.$(O): output/outelf.c compiler.h config.h directiv.h insnsi.h \
414 nasm.h nasmint.h nasmlib.h opflags.h output/dwarf.h output/elf.h \
415 output/outelf.h output/outform.h pptok.h preproc.h rbtree.h regs.h saa.h \
416 tables.h
417 output/outelf32.$(O): output/outelf32.c compiler.h config.h directiv.h \
418 eval.h insnsi.h nasm.h nasmint.h nasmlib.h opflags.h output/dwarf.h \
419 output/elf.h output/outelf.h output/outform.h output/outlib.h \
420 output/stabs.h pptok.h preproc.h raa.h rbtree.h regs.h saa.h stdscan.h \
421 tables.h ver.h
422 output/outelf64.$(O): output/outelf64.c compiler.h config.h directiv.h \
423 eval.h insnsi.h nasm.h nasmint.h nasmlib.h opflags.h output/dwarf.h \
424 output/elf.h output/outelf.h output/outform.h output/outlib.h \
425 output/stabs.h pptok.h preproc.h raa.h rbtree.h regs.h saa.h stdscan.h \
426 tables.h ver.h
427 output/outelfx32.$(O): output/outelfx32.c compiler.h config.h directiv.h \
428 eval.h insnsi.h nasm.h nasmint.h nasmlib.h opflags.h output/dwarf.h \
429 output/elf.h output/outelf.h output/outform.h output/outlib.h \
430 output/stabs.h pptok.h preproc.h raa.h rbtree.h regs.h saa.h stdscan.h \
431 tables.h ver.h
432 output/outform.$(O): output/outform.c compiler.h config.h directiv.h \
433 insnsi.h nasm.h nasmint.h nasmlib.h opflags.h output/outform.h pptok.h \
434 preproc.h regs.h tables.h
435 output/outieee.$(O): output/outieee.c compiler.h config.h directiv.h \
436 insnsi.h nasm.h nasmint.h nasmlib.h opflags.h output/outform.h \
437 output/outlib.h pptok.h preproc.h regs.h tables.h ver.h
438 output/outlib.$(O): output/outlib.c compiler.h config.h directiv.h insnsi.h \
439 nasm.h nasmint.h nasmlib.h opflags.h output/outlib.h pptok.h preproc.h \
440 regs.h tables.h
441 output/outmacho.$(O): output/outmacho.c compiler.h config.h directiv.h \
442 insnsi.h nasm.h nasmint.h nasmlib.h opflags.h output/outform.h \
443 output/outlib.h pptok.h preproc.h raa.h rbtree.h regs.h saa.h tables.h
444 output/outobj.$(O): output/outobj.c compiler.h config.h directiv.h eval.h \
445 insnsi.h nasm.h nasmint.h nasmlib.h opflags.h output/outform.h \
446 output/outlib.h pptok.h preproc.h regs.h stdscan.h tables.h ver.h
447 output/outrdf2.$(O): output/outrdf2.c compiler.h config.h directiv.h \
448 insnsi.h nasm.h nasmint.h nasmlib.h opflags.h output/outform.h \
449 output/outlib.h pptok.h preproc.h rdoff/rdoff.h regs.h saa.h tables.h
450 parser.$(O): parser.c compiler.h config.h directiv.h eval.h float.h iflag.h \
451 iflaggen.h insns.h insnsi.h nasm.h nasmint.h nasmlib.h opflags.h parser.h \
452 pptok.h preproc.h regs.h stdscan.h tables.h tokens.h
453 pptok.$(O): pptok.c compiler.h config.h hashtbl.h nasmint.h nasmlib.h \
454 pptok.h preproc.h
455 preproc-nop.$(O): preproc-nop.c compiler.h config.h directiv.h insnsi.h \
456 listing.h nasm.h nasmint.h nasmlib.h opflags.h pptok.h preproc.h regs.h \
457 tables.h
458 preproc.$(O): preproc.c compiler.h config.h directiv.h eval.h hashtbl.h \
459 insnsi.h listing.h nasm.h nasmint.h nasmlib.h opflags.h pptok.h preproc.h \
460 quote.h regs.h stdscan.h tables.h tokens.h
461 quote.$(O): quote.c compiler.h config.h nasmint.h nasmlib.h quote.h
462 raa.$(O): raa.c compiler.h config.h nasmint.h nasmlib.h raa.h
463 rbtree.$(O): rbtree.c compiler.h config.h nasmint.h rbtree.h
464 regdis.$(O): regdis.c regdis.h regs.h
465 regflags.$(O): regflags.c compiler.h config.h directiv.h insnsi.h nasm.h \
466 nasmint.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
467 regs.$(O): regs.c compiler.h config.h insnsi.h nasmint.h tables.h
468 regvals.$(O): regvals.c compiler.h config.h insnsi.h nasmint.h tables.h
469 saa.$(O): saa.c compiler.h config.h nasmint.h nasmlib.h saa.h
470 stdlib/snprintf.$(O): stdlib/snprintf.c compiler.h config.h nasmint.h \
471 nasmlib.h
472 stdlib/strlcpy.$(O): stdlib/strlcpy.c compiler.h config.h nasmint.h
473 stdlib/vsnprintf.$(O): stdlib/vsnprintf.c compiler.h config.h nasmint.h \
474 nasmlib.h
475 stdscan.$(O): stdscan.c compiler.h config.h directiv.h iflag.h iflaggen.h \
476 insns.h insnsi.h nasm.h nasmint.h nasmlib.h opflags.h pptok.h preproc.h \
477 quote.h regs.h stdscan.h tables.h tokens.h
478 strfunc.$(O): strfunc.c compiler.h config.h directiv.h insnsi.h nasm.h \
479 nasmint.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
480 sync.$(O): sync.c compiler.h config.h nasmint.h nasmlib.h sync.h
481 tokhash.$(O): tokhash.c compiler.h config.h directiv.h hashtbl.h iflag.h \
482 iflaggen.h insns.h insnsi.h nasm.h nasmint.h nasmlib.h opflags.h pptok.h \
483 preproc.h regs.h stdscan.h tables.h tokens.h