mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
6e01ea2bc6
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
613 lines
25 KiB
Makefile
613 lines
25 KiB
Makefile
#
|
|
# Auto-configuring Makefile for the Netwide Assembler.
|
|
#
|
|
# The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
|
# Julian Hall. All rights reserved. The software is
|
|
# redistributable under the license given in the file "LICENSE"
|
|
# distributed in the NASM archive.
|
|
|
|
@SET_MAKE@
|
|
|
|
top_srcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
objdir = @builddir@
|
|
VPATH = @srcdir@
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
bindir = @bindir@
|
|
mandir = @mandir@
|
|
datarootdir = @datarootdir@
|
|
|
|
CC = @CC@
|
|
CFLAGS = @CFLAGS@
|
|
BUILD_CFLAGS = $(CFLAGS) @DEFS@
|
|
INTERNAL_CFLAGS = -I$(srcdir) -I$(objdir) \
|
|
-I$(srcdir)/include -I$(objdir)/include \
|
|
-I$(srcdir)/x86 -I$(objdir)/x86 \
|
|
-I$(srcdir)/asm -I$(objdir)/asm \
|
|
-I$(srcdir)/disasm -I$(objdir)/disasm \
|
|
-I$(srcdir)/output -I$(objdir)/output
|
|
ALL_CFLAGS = $(BUILD_CFLAGS) $(INTERNAL_CFLAGS)
|
|
LDFLAGS = @LDFLAGS@
|
|
LIBS = @LIBS@
|
|
|
|
AR = @AR@
|
|
RANLIB = @RANLIB@
|
|
STRIP = @STRIP@
|
|
|
|
PERL = perl
|
|
PERLFLAGS = -I$(srcdir)/perllib -I$(srcdir)
|
|
RUNPERL = $(PERL) $(PERLFLAGS)
|
|
|
|
INSTALL = @INSTALL@
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
NROFF = @NROFF@
|
|
ASCIIDOC = @ASCIIDOC@
|
|
XMLTO = @XMLTO@
|
|
|
|
MAKENSIS = makensis
|
|
|
|
MKDIR = mkdir
|
|
RM = rm
|
|
FIND = find
|
|
|
|
# Binary suffixes
|
|
O = @OBJEXT@
|
|
X = @EXEEXT@
|
|
A = @LIBEXT@
|
|
|
|
# Debug stuff
|
|
ifeq ($(TRACE),1)
|
|
CFLAGS += -DNASM_TRACE
|
|
endif
|
|
|
|
.SUFFIXES: .c .i .s .$(O) .$(A) .1 .txt .xml
|
|
|
|
.PHONY: all doc rdf install clean distclean cleaner spotless install_rdf test
|
|
.PHONY: install_doc everything install_everything strip perlreq dist tags TAGS
|
|
.PHONY: manpages nsis
|
|
|
|
.c.$(O):
|
|
$(CC) -c $(ALL_CFLAGS) -o $@ $<
|
|
|
|
.c.s:
|
|
$(CC) -S $(ALL_CFLAGS) -o $@ $<
|
|
|
|
.c.i:
|
|
$(CC) -E $(ALL_CFLAGS) -o $@ $<
|
|
|
|
.txt.xml:
|
|
$(ASCIIDOC) -b docbook -d manpage -o $@ $<
|
|
|
|
.xml.1:
|
|
$(XMLTO) man --skip-validation $< 2>/dev/null
|
|
|
|
#-- Begin File Lists --#
|
|
NASM = asm/nasm.$(O) \
|
|
asm/float.$(O) \
|
|
asm/directiv.$(O) \
|
|
asm/assemble.$(O) asm/labels.$(O) asm/parser.$(O) \
|
|
asm/preproc.$(O) asm/quote.$(O) asm/pptok.$(O) \
|
|
asm/listing.$(O) asm/eval.$(O) asm/exprlib.$(O) \
|
|
asm/stdscan.$(O) \
|
|
asm/strfunc.$(O) asm/tokhash.$(O) \
|
|
asm/segalloc.$(O) \
|
|
asm/preproc-nop.$(O) \
|
|
asm/rdstrnum.$(O) \
|
|
\
|
|
macros/macros.$(O) \
|
|
\
|
|
output/outform.$(O) output/outlib.$(O) output/nulldbg.$(O) \
|
|
output/nullout.$(O) \
|
|
output/outbin.$(O) output/outaout.$(O) output/outcoff.$(O) \
|
|
output/outelf.$(O) \
|
|
output/outobj.$(O) output/outas86.$(O) output/outrdf2.$(O) \
|
|
output/outdbg.$(O) output/outieee.$(O) output/outmacho.$(O) \
|
|
output/codeview.$(O)
|
|
|
|
NDISASM = disasm/ndisasm.$(O) disasm/disasm.$(O) disasm/sync.$(O)
|
|
|
|
LIBOBJ = stdlib/snprintf.$(O) stdlib/vsnprintf.$(O) stdlib/strlcpy.$(O) \
|
|
stdlib/strnlen.$(O) \
|
|
nasmlib/ver.$(O) \
|
|
nasmlib/crc64.$(O) nasmlib/malloc.$(O) \
|
|
nasmlib/error.$(O) nasmlib/md5c.$(O) nasmlib/string.$(O) \
|
|
nasmlib/file.$(O) nasmlib/ilog2.$(O) \
|
|
nasmlib/realpath.$(O) nasmlib/filename.$(O) nasmlib/srcfile.$(O) \
|
|
nasmlib/zerobuf.$(O) nasmlib/readnum.$(O) nasmlib/bsi.$(O) \
|
|
nasmlib/rbtree.$(O) nasmlib/hashtbl.$(O) \
|
|
nasmlib/raa.$(O) nasmlib/saa.$(O) \
|
|
common/common.$(O) \
|
|
x86/insnsa.$(O) x86/insnsb.$(O) x86/insnsd.$(O) x86/insnsn.$(O) \
|
|
x86/regs.$(O) x86/regvals.$(O) x86/regflags.$(O) x86/regdis.$(O) \
|
|
x86/disp8.$(O) x86/iflag.$(O)
|
|
#-- End File Lists --#
|
|
|
|
all: nasm$(X) ndisasm$(X) rdf
|
|
|
|
NASMLIB = libnasm.$(A)
|
|
|
|
$(NASMLIB): $(LIBOBJ)
|
|
$(RM) -f $(NASMLIB)
|
|
$(AR) cq $(NASMLIB) $(LIBOBJ)
|
|
$(RANLIB) $(NASMLIB)
|
|
|
|
nasm$(X): $(NASM) $(NASMLIB)
|
|
$(CC) $(LDFLAGS) -o nasm$(X) $(NASM) $(NASMLIB) $(LIBS)
|
|
|
|
ndisasm$(X): $(NDISASM) $(NASMLIB)
|
|
$(CC) $(LDFLAGS) -o ndisasm$(X) $(NDISASM) $(NASMLIB) $(LIBS)
|
|
|
|
# These source files are automagically generated from a single
|
|
# instruction-table file by a Perl script. They're distributed,
|
|
# though, so it isn't necessary to have Perl just to recompile NASM
|
|
# from the distribution.
|
|
INSDEP = x86/insns.dat x86/insns.pl
|
|
|
|
x86/iflag.c: $(INSDEP)
|
|
$(RUNPERL) $(srcdir)/x86/insns.pl -fc \
|
|
$(srcdir)/x86/insns.dat x86/iflag.c
|
|
x86/iflaggen.h: $(INSDEP)
|
|
$(RUNPERL) $(srcdir)/x86/insns.pl -fh \
|
|
$(srcdir)/x86/insns.dat x86/iflaggen.h
|
|
x86/insnsb.c: $(INSDEP)
|
|
$(RUNPERL) $(srcdir)/x86/insns.pl -b \
|
|
$(srcdir)/x86/insns.dat x86/insnsb.c
|
|
x86/insnsa.c: $(INSDEP)
|
|
$(RUNPERL) $(srcdir)/x86/insns.pl -a \
|
|
$(srcdir)/x86/insns.dat x86/insnsa.c
|
|
x86/insnsd.c: $(INSDEP)
|
|
$(RUNPERL) $(srcdir)/x86/insns.pl -d \
|
|
$(srcdir)/x86/insns.dat x86/insnsd.c
|
|
x86/insnsi.h: $(INSDEP)
|
|
$(RUNPERL) $(srcdir)/x86/insns.pl -i \
|
|
$(srcdir)/x86/insns.dat x86/insnsi.h
|
|
x86/insnsn.c: $(INSDEP)
|
|
$(RUNPERL) $(srcdir)/x86/insns.pl -n \
|
|
$(srcdir)/x86/insns.dat x86/insnsn.c
|
|
|
|
# These files contains all the standard macros that are derived from
|
|
# the version number.
|
|
version.h: version version.pl
|
|
$(RUNPERL) $(srcdir)/version.pl h < $(srcdir)/version > version.h
|
|
version.mac: version version.pl
|
|
$(RUNPERL) $(srcdir)/version.pl mac < $(srcdir)/version > version.mac
|
|
version.sed: version version.pl
|
|
$(RUNPERL) $(srcdir)/version.pl sed < $(srcdir)/version > version.sed
|
|
version.mak: version version.pl
|
|
$(RUNPERL) $(srcdir)/version.pl make < $(srcdir)/version > version.mak
|
|
nsis/version.nsh: version version.pl
|
|
$(RUNPERL) $(srcdir)/version.pl nsis < $(srcdir)/version > nsis/version.nsh
|
|
|
|
# This source file is generated from the standard macros file
|
|
# `standard.mac' by another Perl script. Again, it's part of the
|
|
# standard distribution.
|
|
macros/macros.c: macros/macros.pl asm/pptok.ph version.mac \
|
|
$(srcdir)/macros/*.mac $(srcdir)/output/*.mac
|
|
$(RUNPERL) $(srcdir)/macros/macros.pl version.mac \
|
|
$(srcdir)/macros/*.mac $(srcdir)/output/*.mac
|
|
|
|
# These source files are generated from regs.dat by yet another
|
|
# perl script.
|
|
x86/regs.c: x86/regs.dat x86/regs.pl
|
|
$(RUNPERL) $(srcdir)/x86/regs.pl c \
|
|
$(srcdir)/x86/regs.dat > x86/regs.c
|
|
x86/regflags.c: x86/regs.dat x86/regs.pl
|
|
$(RUNPERL) $(srcdir)/x86/regs.pl fc \
|
|
$(srcdir)/x86/regs.dat > x86/regflags.c
|
|
x86/regdis.c: x86/regs.dat x86/regs.pl
|
|
$(RUNPERL) $(srcdir)/x86/regs.pl dc \
|
|
$(srcdir)/x86/regs.dat > x86/regdis.c
|
|
x86/regdis.h: x86/regs.dat x86/regs.pl
|
|
$(RUNPERL) $(srcdir)/x86/regs.pl dh \
|
|
$(srcdir)/x86/regs.dat > x86/regdis.h
|
|
x86/regvals.c: x86/regs.dat x86/regs.pl
|
|
$(RUNPERL) $(srcdir)/x86/regs.pl vc \
|
|
$(srcdir)/x86/regs.dat > x86/regvals.c
|
|
x86/regs.h: x86/regs.dat x86/regs.pl
|
|
$(RUNPERL) $(srcdir)/x86/regs.pl h \
|
|
$(srcdir)/x86/regs.dat > x86/regs.h
|
|
|
|
# Assembler token hash
|
|
asm/tokhash.c: x86/insns.dat x86/regs.dat asm/tokens.dat asm/tokhash.pl \
|
|
perllib/phash.ph
|
|
$(RUNPERL) $(srcdir)/asm/tokhash.pl c \
|
|
$(srcdir)/x86/insns.dat $(srcdir)/x86/regs.dat \
|
|
$(srcdir)/asm/tokens.dat > asm/tokhash.c
|
|
|
|
# Assembler token metadata
|
|
asm/tokens.h: x86/insns.dat x86/regs.dat asm/tokens.dat asm/tokhash.pl \
|
|
perllib/phash.ph
|
|
$(RUNPERL) $(srcdir)/asm/tokhash.pl h \
|
|
$(srcdir)/x86/insns.dat $(srcdir)/x86/regs.dat \
|
|
$(srcdir)/asm/tokens.dat > asm/tokens.h
|
|
|
|
# Preprocessor token hash
|
|
asm/pptok.h: asm/pptok.dat asm/pptok.pl perllib/phash.ph
|
|
$(RUNPERL) $(srcdir)/asm/pptok.pl h \
|
|
$(srcdir)/asm/pptok.dat asm/pptok.h
|
|
asm/pptok.c: asm/pptok.dat asm/pptok.pl perllib/phash.ph
|
|
$(RUNPERL) $(srcdir)/asm/pptok.pl c \
|
|
$(srcdir)/asm/pptok.dat asm/pptok.c
|
|
asm/pptok.ph: asm/pptok.dat asm/pptok.pl perllib/phash.ph
|
|
$(RUNPERL) $(srcdir)/asm/pptok.pl ph \
|
|
$(srcdir)/asm/pptok.dat asm/pptok.ph
|
|
|
|
# Directives hash
|
|
asm/directiv.h: asm/directiv.dat asm/directiv.pl perllib/phash.ph
|
|
$(RUNPERL) $(srcdir)/asm/directiv.pl h \
|
|
$(srcdir)/asm/directiv.dat asm/directiv.h
|
|
asm/directiv.c: asm/directiv.dat asm/directiv.pl perllib/phash.ph
|
|
$(RUNPERL) $(srcdir)/asm/directiv.pl c \
|
|
$(srcdir)/asm/directiv.dat asm/directiv.c
|
|
|
|
# This target generates all files that require perl.
|
|
# This allows easier generation of distribution (see dist target).
|
|
PERLREQ = x86/insnsb.c x86/insnsa.c x86/insnsd.c x86/insnsi.h x86/insnsn.c \
|
|
x86/regs.c x86/regs.h x86/regflags.c x86/regdis.c x86/regdis.h \
|
|
x86/regvals.c asm/tokhash.c asm/tokens.h asm/pptok.h asm/pptok.c \
|
|
x86/iflag.c x86/iflaggen.h \
|
|
macros/macros.c \
|
|
asm/pptok.ph asm/directiv.c asm/directiv.h \
|
|
version.h version.mac version.mak nsis/version.nsh
|
|
perlreq: $(PERLREQ)
|
|
|
|
# NSIS is not built except by explicit request, as it only applies to
|
|
# Windows platforms
|
|
nsis/arch.nsh: nsis/getpearch.pl nasm$(X)
|
|
$(PERL) $(srcdir)/nsis/getpearch.pl nasm$(X) > nsis/arch.nsh
|
|
|
|
# Should only be done after "make everything".
|
|
# The use of redirection here keeps makensis from moving the cwd to the
|
|
# source directory.
|
|
nsis: nsis/nasm.nsi nsis/arch.nsh nsis/version.nsh
|
|
$(MAKENSIS) -Dsrcdir="$(srcdir)" -Dobjdir="$(objdir)" - < "$<"
|
|
|
|
# Generated manpages, also pregenerated for distribution
|
|
manpages: nasm.1 ndisasm.1
|
|
|
|
install: nasm$(X) ndisasm$(X)
|
|
$(MKDIR) -p $(INSTALLROOT)$(bindir)
|
|
$(INSTALL_PROGRAM) nasm$(X) $(INSTALLROOT)$(bindir)/nasm$(X)
|
|
$(INSTALL_PROGRAM) ndisasm$(X) $(INSTALLROOT)$(bindir)/ndisasm$(X)
|
|
$(MKDIR) -p $(INSTALLROOT)$(mandir)/man1
|
|
$(INSTALL_DATA) $(srcdir)/nasm.1 $(INSTALLROOT)$(mandir)/man1/nasm.1
|
|
$(INSTALL_DATA) $(srcdir)/ndisasm.1 $(INSTALLROOT)$(mandir)/man1/ndisasm.1
|
|
|
|
clean:
|
|
for d in . stdlib nasmlib output asm disasm x86 common macros; do \
|
|
$(RM) -f "$$d"/*.$(O) "$$d"/*.s "$$d"/*.i "$$d"/*.$(A) ; \
|
|
done
|
|
$(RM) -f nasm$(X) ndisasm$(X)
|
|
$(RM) -f nasm-*-installer-*.exe
|
|
$(RM) -f tags TAGS
|
|
$(RM) -f nsis/arch.nsh
|
|
cd rdoff && $(MAKE) clean
|
|
|
|
distclean: clean
|
|
$(RM) -f config.h config.log config.status
|
|
$(RM) -f Makefile *~ *.bak *.lst *.bin
|
|
$(RM) -f output/*~ output/*.bak
|
|
$(RM) -f test/*.lst test/*.bin test/*.$(O) test/*.bin
|
|
$(RM) -rf autom4te*.cache
|
|
cd rdoff && $(MAKE) distclean
|
|
|
|
cleaner: clean
|
|
$(RM) -f $(PERLREQ) *.1 nasm.spec
|
|
cd doc && $(MAKE) clean
|
|
|
|
spotless: distclean cleaner
|
|
$(RM) -f doc/Makefile doc/*~ doc/*.bak
|
|
|
|
strip:
|
|
$(STRIP) --strip-unneeded nasm$(X) ndisasm$(X)
|
|
|
|
rdf: $(NASMLIB)
|
|
cd rdoff && $(MAKE) all
|
|
|
|
TAGS:
|
|
$(RM) -f TAGS
|
|
$(FIND) . -name '*.[hcS]' -print | xargs etags -a
|
|
|
|
tags:
|
|
$(RM) -f tags
|
|
$(FIND) . -name '*.[hcS]' -print | xargs ctags -a
|
|
|
|
cscope:
|
|
$(RM) -f cscope.out cscope.files
|
|
$(FIND) . -name '*.[hcS]' -print > cscope.files
|
|
cscope -b -f cscope.out
|
|
|
|
rdf_install install_rdf:
|
|
cd rdoff && $(MAKE) install
|
|
|
|
doc:
|
|
cd doc && $(MAKE) all
|
|
|
|
doc_install install_doc:
|
|
cd doc && $(MAKE) install
|
|
|
|
everything: all manpages doc rdf
|
|
|
|
install_everything: everything install install_doc install_rdf
|
|
|
|
dist:
|
|
$(MAKE) alldeps
|
|
$(MAKE) spotless perlreq manpages spec
|
|
autoheader
|
|
autoconf
|
|
$(RM) -rf ./autom4te*.cache
|
|
|
|
tar: dist
|
|
tar -cvj --exclude CVS -C .. -f ../nasm-`cat version`-`date +%Y%m%d`.tar.bz2 `basename \`pwd\``
|
|
|
|
spec: nasm.spec
|
|
|
|
nasm.spec: nasm.spec.in version.sed
|
|
sed -f version.sed < nasm.spec.in > nasm.spec
|
|
|
|
splint:
|
|
splint -weak *.c
|
|
|
|
test: nasm$(X)
|
|
cd test && $(RUNPERL) performtest.pl --nasm=../nasm *.asm
|
|
|
|
golden: nasm$(X)
|
|
cd test && $(RUNPERL) performtest.pl --golden --nasm=../nasm *.asm
|
|
|
|
#
|
|
# This build dependencies in *ALL* makefiles. Partially for that reason,
|
|
# it's expected to be invoked manually.
|
|
#
|
|
alldeps: perlreq tools/syncfiles.pl tools/mkdep.pl
|
|
$(RUNPERL) tools/syncfiles.pl Makefile.in Mkfiles/*.mak
|
|
$(RUNPERL) tools/mkdep.pl -M Makefile.in Mkfiles/*.mak -- \
|
|
. include asm common disasm macros nasmlib output stdlib x86
|
|
./config.status
|
|
|
|
#-- Magic hints to mkdep.pl --#
|
|
# @object-ending: ".$(O)"
|
|
# @path-separator: "/"
|
|
#-- Everything below is generated by mkdep.pl - do not edit --#
|
|
asm/assemble.$(O): asm/assemble.c asm/assemble.h asm/directiv.h \
|
|
asm/listing.h asm/pptok.h asm/preproc.h asm/tokens.h config.h \
|
|
include/compiler.h include/disp8.h include/iflag.h include/insns.h \
|
|
include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
|
|
include/tables.h x86/iflaggen.h x86/insnsi.h x86/regs.h
|
|
asm/directiv.$(O): asm/directiv.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
config.h include/compiler.h include/hashtbl.h include/nasm.h \
|
|
include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
|
|
x86/insnsi.h x86/regs.h
|
|
asm/eval.$(O): asm/eval.c asm/directiv.h asm/eval.h asm/float.h asm/pptok.h \
|
|
asm/preproc.h config.h include/compiler.h include/labels.h include/nasm.h \
|
|
include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
|
|
x86/insnsi.h x86/regs.h
|
|
asm/exprlib.$(O): asm/exprlib.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
config.h include/compiler.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/tables.h x86/insnsi.h \
|
|
x86/regs.h
|
|
asm/float.$(O): asm/float.c asm/directiv.h asm/float.h asm/pptok.h \
|
|
asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/tables.h x86/insnsi.h \
|
|
x86/regs.h
|
|
asm/labels.$(O): asm/labels.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
config.h include/compiler.h include/hashtbl.h include/labels.h \
|
|
include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
|
|
include/tables.h x86/insnsi.h x86/regs.h
|
|
asm/listing.$(O): asm/listing.c asm/directiv.h asm/listing.h asm/pptok.h \
|
|
asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/tables.h x86/insnsi.h \
|
|
x86/regs.h
|
|
asm/nasm.$(O): asm/nasm.c asm/assemble.h asm/directiv.h asm/eval.h \
|
|
asm/float.h asm/listing.h asm/parser.h asm/pptok.h asm/preproc.h \
|
|
asm/stdscan.h asm/tokens.h config.h include/compiler.h include/iflag.h \
|
|
include/insns.h include/labels.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/raa.h include/saa.h \
|
|
include/tables.h include/ver.h output/outform.h x86/iflaggen.h x86/insnsi.h \
|
|
x86/regs.h
|
|
asm/parser.$(O): asm/parser.c asm/directiv.h asm/eval.h asm/float.h \
|
|
asm/parser.h asm/pptok.h asm/preproc.h asm/stdscan.h asm/tokens.h config.h \
|
|
include/compiler.h include/iflag.h include/insns.h include/nasm.h \
|
|
include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
|
|
x86/iflaggen.h x86/insnsi.h x86/regs.h
|
|
asm/pptok.$(O): asm/pptok.c asm/pptok.h asm/preproc.h config.h \
|
|
include/compiler.h include/hashtbl.h include/nasmint.h include/nasmlib.h
|
|
asm/preproc-nop.$(O): asm/preproc-nop.c asm/directiv.h asm/listing.h \
|
|
asm/pptok.h asm/preproc.h config.h include/compiler.h include/nasm.h \
|
|
include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
|
|
x86/insnsi.h x86/regs.h
|
|
asm/preproc.$(O): asm/preproc.c asm/directiv.h asm/eval.h asm/listing.h \
|
|
asm/pptok.h asm/preproc.h asm/quote.h asm/stdscan.h asm/tokens.h config.h \
|
|
include/compiler.h include/hashtbl.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/tables.h x86/insnsi.h \
|
|
x86/regs.h
|
|
asm/quote.$(O): asm/quote.c asm/quote.h config.h include/compiler.h \
|
|
include/nasmint.h include/nasmlib.h
|
|
asm/rdstrnum.$(O): asm/rdstrnum.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
config.h include/compiler.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/tables.h x86/insnsi.h \
|
|
x86/regs.h
|
|
asm/segalloc.$(O): asm/segalloc.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
asm/tokens.h config.h include/compiler.h include/iflag.h include/insns.h \
|
|
include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
|
|
include/tables.h x86/iflaggen.h x86/insnsi.h x86/regs.h
|
|
asm/stdscan.$(O): asm/stdscan.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
asm/quote.h asm/stdscan.h asm/tokens.h config.h include/compiler.h \
|
|
include/iflag.h include/insns.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/tables.h x86/iflaggen.h \
|
|
x86/insnsi.h x86/regs.h
|
|
asm/strfunc.$(O): asm/strfunc.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
config.h include/compiler.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/tables.h x86/insnsi.h \
|
|
x86/regs.h
|
|
asm/tokhash.$(O): asm/tokhash.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
asm/stdscan.h asm/tokens.h config.h include/compiler.h include/hashtbl.h \
|
|
include/iflag.h include/insns.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/tables.h x86/iflaggen.h \
|
|
x86/insnsi.h x86/regs.h
|
|
common/common.$(O): common/common.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
asm/tokens.h config.h include/compiler.h include/iflag.h include/insns.h \
|
|
include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
|
|
include/tables.h x86/iflaggen.h x86/insnsi.h x86/regs.h
|
|
disasm/disasm.$(O): disasm/disasm.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
asm/tokens.h config.h disasm/disasm.h disasm/sync.h include/compiler.h \
|
|
include/disp8.h include/iflag.h include/insns.h include/nasm.h \
|
|
include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
|
|
x86/iflaggen.h x86/insnsi.h x86/regdis.h x86/regs.h
|
|
disasm/ndisasm.$(O): disasm/ndisasm.c asm/directiv.h asm/pptok.h \
|
|
asm/preproc.h asm/tokens.h config.h disasm/disasm.h disasm/sync.h \
|
|
include/compiler.h include/iflag.h include/insns.h include/nasm.h \
|
|
include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
|
|
include/ver.h x86/iflaggen.h x86/insnsi.h x86/regs.h
|
|
disasm/sync.$(O): disasm/sync.c config.h disasm/sync.h include/compiler.h \
|
|
include/nasmint.h include/nasmlib.h
|
|
macros/macros.$(O): macros/macros.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
config.h include/compiler.h include/hashtbl.h include/nasm.h \
|
|
include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
|
|
output/outform.h x86/insnsi.h x86/regs.h
|
|
nasmlib/bsi.$(O): nasmlib/bsi.c config.h include/compiler.h \
|
|
include/nasmint.h include/nasmlib.h
|
|
nasmlib/crc64.$(O): nasmlib/crc64.c config.h include/compiler.h \
|
|
include/hashtbl.h include/nasmint.h include/nasmlib.h
|
|
nasmlib/error.$(O): nasmlib/error.c config.h include/compiler.h \
|
|
include/nasmint.h include/nasmlib.h
|
|
nasmlib/file.$(O): nasmlib/file.c config.h include/compiler.h \
|
|
include/nasmint.h include/nasmlib.h
|
|
nasmlib/filename.$(O): nasmlib/filename.c config.h include/compiler.h \
|
|
include/nasmint.h include/nasmlib.h
|
|
nasmlib/hashtbl.$(O): nasmlib/hashtbl.c asm/directiv.h asm/pptok.h \
|
|
asm/preproc.h config.h include/compiler.h include/hashtbl.h include/nasm.h \
|
|
include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
|
|
x86/insnsi.h x86/regs.h
|
|
nasmlib/ilog2.$(O): nasmlib/ilog2.c config.h include/compiler.h \
|
|
include/nasmint.h include/nasmlib.h
|
|
nasmlib/malloc.$(O): nasmlib/malloc.c config.h include/compiler.h \
|
|
include/nasmint.h include/nasmlib.h
|
|
nasmlib/md5c.$(O): nasmlib/md5c.c config.h include/compiler.h include/md5.h \
|
|
include/nasmint.h
|
|
nasmlib/raa.$(O): nasmlib/raa.c config.h include/compiler.h \
|
|
include/nasmint.h include/nasmlib.h include/raa.h
|
|
nasmlib/rbtree.$(O): nasmlib/rbtree.c config.h include/compiler.h \
|
|
include/nasmint.h include/rbtree.h
|
|
nasmlib/readnum.$(O): nasmlib/readnum.c asm/directiv.h asm/pptok.h \
|
|
asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/tables.h x86/insnsi.h \
|
|
x86/regs.h
|
|
nasmlib/realpath.$(O): nasmlib/realpath.c config.h include/compiler.h \
|
|
include/nasmint.h include/nasmlib.h
|
|
nasmlib/saa.$(O): nasmlib/saa.c config.h include/compiler.h \
|
|
include/nasmint.h include/nasmlib.h include/saa.h
|
|
nasmlib/srcfile.$(O): nasmlib/srcfile.c config.h include/compiler.h \
|
|
include/hashtbl.h include/nasmint.h include/nasmlib.h
|
|
nasmlib/string.$(O): nasmlib/string.c config.h include/compiler.h \
|
|
include/nasmint.h include/nasmlib.h
|
|
nasmlib/ver.$(O): nasmlib/ver.c include/ver.h version.h
|
|
nasmlib/zerobuf.$(O): nasmlib/zerobuf.c config.h include/compiler.h \
|
|
include/nasmint.h include/nasmlib.h
|
|
output/codeview.$(O): output/codeview.c asm/directiv.h asm/pptok.h \
|
|
asm/preproc.h config.h include/compiler.h include/hashtbl.h include/md5.h \
|
|
include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
|
|
include/saa.h include/tables.h output/outlib.h output/pecoff.h version.h \
|
|
x86/insnsi.h x86/regs.h
|
|
output/nulldbg.$(O): output/nulldbg.c asm/directiv.h asm/pptok.h \
|
|
asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/tables.h output/outlib.h \
|
|
x86/insnsi.h x86/regs.h
|
|
output/nullout.$(O): output/nullout.c asm/directiv.h asm/pptok.h \
|
|
asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/tables.h output/outlib.h \
|
|
x86/insnsi.h x86/regs.h
|
|
output/outaout.$(O): output/outaout.c asm/directiv.h asm/eval.h asm/pptok.h \
|
|
asm/preproc.h asm/stdscan.h config.h include/compiler.h include/nasm.h \
|
|
include/nasmint.h include/nasmlib.h include/opflags.h include/raa.h \
|
|
include/saa.h include/tables.h output/outform.h output/outlib.h \
|
|
x86/insnsi.h x86/regs.h
|
|
output/outas86.$(O): output/outas86.c asm/directiv.h asm/pptok.h \
|
|
asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/raa.h include/saa.h \
|
|
include/tables.h output/outform.h output/outlib.h x86/insnsi.h x86/regs.h
|
|
output/outbin.$(O): output/outbin.c asm/directiv.h asm/eval.h asm/pptok.h \
|
|
asm/preproc.h asm/stdscan.h config.h include/compiler.h include/labels.h \
|
|
include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
|
|
include/saa.h include/tables.h output/outform.h output/outlib.h \
|
|
x86/insnsi.h x86/regs.h
|
|
output/outcoff.$(O): output/outcoff.c asm/directiv.h asm/eval.h asm/pptok.h \
|
|
asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/raa.h include/saa.h \
|
|
include/tables.h output/outform.h output/outlib.h output/pecoff.h \
|
|
x86/insnsi.h x86/regs.h
|
|
output/outdbg.$(O): output/outdbg.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
config.h include/compiler.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/tables.h output/outform.h \
|
|
x86/insnsi.h x86/regs.h
|
|
output/outelf.$(O): output/outelf.c asm/directiv.h asm/eval.h asm/pptok.h \
|
|
asm/preproc.h asm/stdscan.h config.h include/compiler.h include/nasm.h \
|
|
include/nasmint.h include/nasmlib.h include/opflags.h include/raa.h \
|
|
include/rbtree.h include/saa.h include/tables.h include/ver.h \
|
|
output/dwarf.h output/elf.h output/outelf.h output/outform.h \
|
|
output/outlib.h output/stabs.h x86/insnsi.h x86/regs.h
|
|
output/outform.$(O): output/outform.c asm/directiv.h asm/pptok.h \
|
|
asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/tables.h output/outform.h \
|
|
x86/insnsi.h x86/regs.h
|
|
output/outieee.$(O): output/outieee.c asm/directiv.h asm/pptok.h \
|
|
asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/tables.h include/ver.h \
|
|
output/outform.h output/outlib.h x86/insnsi.h x86/regs.h
|
|
output/outlib.$(O): output/outlib.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
config.h include/compiler.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/tables.h output/outlib.h \
|
|
x86/insnsi.h x86/regs.h
|
|
output/outmacho.$(O): output/outmacho.c asm/directiv.h asm/pptok.h \
|
|
asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/raa.h include/rbtree.h \
|
|
include/saa.h include/tables.h output/outform.h output/outlib.h \
|
|
x86/insnsi.h x86/regs.h
|
|
output/outobj.$(O): output/outobj.c asm/directiv.h asm/eval.h asm/pptok.h \
|
|
asm/preproc.h asm/stdscan.h config.h include/compiler.h include/nasm.h \
|
|
include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
|
|
include/ver.h output/outform.h output/outlib.h x86/insnsi.h x86/regs.h
|
|
output/outrdf2.$(O): output/outrdf2.c asm/directiv.h asm/pptok.h \
|
|
asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/rdoff.h include/saa.h \
|
|
include/tables.h output/outform.h output/outlib.h x86/insnsi.h x86/regs.h
|
|
stdlib/snprintf.$(O): stdlib/snprintf.c config.h include/compiler.h \
|
|
include/nasmint.h include/nasmlib.h
|
|
stdlib/strlcpy.$(O): stdlib/strlcpy.c config.h include/compiler.h \
|
|
include/nasmint.h
|
|
stdlib/strnlen.$(O): stdlib/strnlen.c config.h include/compiler.h \
|
|
include/nasmint.h
|
|
stdlib/vsnprintf.$(O): stdlib/vsnprintf.c config.h include/compiler.h \
|
|
include/nasmint.h include/nasmlib.h
|
|
x86/disp8.$(O): x86/disp8.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
config.h include/compiler.h include/disp8.h include/nasm.h \
|
|
include/nasmint.h include/nasmlib.h include/opflags.h include/tables.h \
|
|
x86/insnsi.h x86/regs.h
|
|
x86/iflag.$(O): x86/iflag.c config.h include/compiler.h include/iflag.h \
|
|
include/nasmint.h x86/iflaggen.h
|
|
x86/insnsa.$(O): x86/insnsa.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
asm/tokens.h config.h include/compiler.h include/iflag.h include/insns.h \
|
|
include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
|
|
include/tables.h x86/iflaggen.h x86/insnsi.h x86/regs.h
|
|
x86/insnsb.$(O): x86/insnsb.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
asm/tokens.h config.h include/compiler.h include/iflag.h include/insns.h \
|
|
include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
|
|
include/tables.h x86/iflaggen.h x86/insnsi.h x86/regs.h
|
|
x86/insnsd.$(O): x86/insnsd.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
asm/tokens.h config.h include/compiler.h include/iflag.h include/insns.h \
|
|
include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h \
|
|
include/tables.h x86/iflaggen.h x86/insnsi.h x86/regs.h
|
|
x86/insnsn.$(O): x86/insnsn.c config.h include/compiler.h include/nasmint.h \
|
|
include/tables.h x86/insnsi.h
|
|
x86/regdis.$(O): x86/regdis.c x86/regdis.h x86/regs.h
|
|
x86/regflags.$(O): x86/regflags.c asm/directiv.h asm/pptok.h asm/preproc.h \
|
|
config.h include/compiler.h include/nasm.h include/nasmint.h \
|
|
include/nasmlib.h include/opflags.h include/tables.h x86/insnsi.h \
|
|
x86/regs.h
|
|
x86/regs.$(O): x86/regs.c config.h include/compiler.h include/nasmint.h \
|
|
include/tables.h x86/insnsi.h
|
|
x86/regvals.$(O): x86/regvals.c config.h include/compiler.h \
|
|
include/nasmint.h include/tables.h x86/insnsi.h
|