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