2007-09-25 03:30:54 +08:00
|
|
|
# -*- makefile -*-
|
|
|
|
#
|
2007-09-17 13:16:24 +08:00
|
|
|
# Makefile for building NASM using Microsoft Visual C++ and NMAKE.
|
|
|
|
# Tested on Microsoft Visual C++ 2005 Express Edition.
|
|
|
|
#
|
|
|
|
# Make sure to put the appropriate directories in your PATH, in
|
|
|
|
# the case of MSVC++ 2005, they are ...\VC\bin and ...\Common7\IDE.
|
|
|
|
|
|
|
|
top_srcdir = .
|
|
|
|
srcdir = .
|
|
|
|
VPATH = .
|
|
|
|
prefix = C:\Program Files\NASM
|
|
|
|
exec_prefix = $(prefix)
|
|
|
|
bindir = $(prefix)/bin
|
|
|
|
mandir = $(prefix)/man
|
|
|
|
|
|
|
|
CC = cl
|
|
|
|
CFLAGS = /O2 /Ox /Oy /W2
|
|
|
|
BUILD_CFLAGS = $(CFLAGS) /I$(srcdir)/inttypes
|
2007-09-18 04:53:14 +08:00
|
|
|
INTERNAL_CFLAGS = /I$(srcdir) /I. /DHAVE__SNPRINTF /DHAVE__VSNPRINTF
|
2007-09-17 13:16:24 +08:00
|
|
|
ALL_CFLAGS = $(BUILD_CFLAGS) $(INTERNAL_CFLAGS)
|
2008-05-13 02:00:50 +08:00
|
|
|
LDFLAGS =
|
|
|
|
LIBS =
|
2007-09-17 13:16:24 +08:00
|
|
|
PERL = perl -I$(srcdir)/perllib
|
|
|
|
|
|
|
|
# Binary suffixes
|
|
|
|
O = obj
|
|
|
|
X = .exe
|
|
|
|
|
|
|
|
.SUFFIXES: .c .i .s .$(O) .1 .man
|
|
|
|
|
|
|
|
.c.obj:
|
|
|
|
$(CC) /c $(ALL_CFLAGS) /Fo$@ $<
|
|
|
|
|
2008-06-16 14:50:50 +08:00
|
|
|
#-- Begin File Lists --#
|
2008-06-16 07:54:29 +08:00
|
|
|
# Edit in Makefile.in, not here!
|
2008-11-01 07:53:49 +08:00
|
|
|
NASM = nasm.$(O) nasmlib.$(O) ver.$(O) \
|
|
|
|
raa.$(O) saa.$(O) rbtree.$(O) \
|
2008-06-09 12:15:01 +08:00
|
|
|
float.$(O) insnsa.$(O) insnsb.$(O) \
|
2010-06-16 01:47:16 +08:00
|
|
|
directiv.$(O) \
|
2008-05-14 05:29:47 +08:00
|
|
|
assemble.$(O) labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) \
|
2009-06-28 13:07:33 +08:00
|
|
|
output/outform.$(O) output/outlib.$(O) output/nulldbg.$(O) \
|
2009-07-13 03:53:49 +08:00
|
|
|
output/nullout.$(O) \
|
2009-06-28 13:07:33 +08:00
|
|
|
output/outbin.$(O) output/outaout.$(O) output/outcoff.$(O) \
|
2009-06-26 04:06:49 +08:00
|
|
|
output/outelf.$(O) output/outelf32.$(O) output/outelf64.$(O) \
|
2012-02-04 04:06:04 +08:00
|
|
|
output/outelfx32.$(O) \
|
2007-09-17 13:16:24 +08:00
|
|
|
output/outobj.$(O) output/outas86.$(O) output/outrdf2.$(O) \
|
2010-06-16 01:47:16 +08:00
|
|
|
output/outdbg.$(O) output/outieee.$(O) output/outmac32.$(O) \
|
|
|
|
output/outmac64.$(O) preproc.$(O) quote.$(O) pptok.$(O) \
|
2009-07-13 03:04:56 +08:00
|
|
|
macros.$(O) listing.$(O) eval.$(O) exprlib.$(O) stdscan.$(O) \
|
2009-08-11 06:56:52 +08:00
|
|
|
strfunc.$(O) tokhash.$(O) regvals.$(O) regflags.$(O) \
|
2010-04-22 07:43:20 +08:00
|
|
|
ilog2.$(O) \
|
2012-05-07 15:34:27 +08:00
|
|
|
lib/strlcpy.$(O) \
|
2013-11-10 02:16:11 +08:00
|
|
|
preproc-nop.$(O) \
|
2013-11-25 02:56:49 +08:00
|
|
|
disp8.$(O) \
|
2013-11-10 02:16:11 +08:00
|
|
|
iflag.$(O)
|
2007-09-17 13:16:24 +08:00
|
|
|
|
2008-11-01 07:53:49 +08:00
|
|
|
NDISASM = ndisasm.$(O) disasm.$(O) sync.$(O) nasmlib.$(O) ver.$(O) \
|
2013-11-25 02:56:49 +08:00
|
|
|
insnsd.$(O) insnsb.$(O) insnsn.$(O) regs.$(O) regdis.$(O) \
|
|
|
|
disp8.$(O) iflag.$(O)
|
2008-06-16 14:50:50 +08:00
|
|
|
#-- End File Lists --#
|
2007-09-17 13:16:24 +08:00
|
|
|
|
|
|
|
all: nasm$(X) ndisasm$(X)
|
|
|
|
rem cd rdoff && $(MAKE) all
|
|
|
|
|
|
|
|
nasm$(X): $(NASM)
|
|
|
|
$(CC) $(LDFLAGS) /Fenasm$(X) $(NASM) $(LIBS)
|
|
|
|
|
|
|
|
ndisasm$(X): $(NDISASM)
|
|
|
|
$(CC) $(LDFLAGS) /Fendisasm$(X) $(NDISASM) $(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.
|
|
|
|
|
2013-11-10 02:16:11 +08:00
|
|
|
insns.pl: insns-iflags.pl
|
|
|
|
|
2014-08-08 00:06:51 +08:00
|
|
|
INSDEP = insns.dat insns.pl insns-iflags.pl
|
|
|
|
|
|
|
|
iflag.c: $(INSDEP)
|
|
|
|
$(PERL) $(srcdir)/insns.pl -fc $(srcdir)/insns.dat
|
|
|
|
iflaggen.h: $(INSDEP)
|
|
|
|
$(PERL) $(srcdir)/insns.pl -fh $(srcdir)/insns.dat
|
|
|
|
insnsb.c: $(INSDEP)
|
2008-05-13 02:00:50 +08:00
|
|
|
$(PERL) $(srcdir)/insns.pl -b $(srcdir)/insns.dat
|
2014-08-08 00:06:51 +08:00
|
|
|
insnsa.c: $(INSDEP)
|
2007-09-17 13:16:24 +08:00
|
|
|
$(PERL) $(srcdir)/insns.pl -a $(srcdir)/insns.dat
|
2014-08-08 00:06:51 +08:00
|
|
|
insnsd.c: $(INSDEP)
|
2007-09-17 13:16:24 +08:00
|
|
|
$(PERL) $(srcdir)/insns.pl -d $(srcdir)/insns.dat
|
2014-08-08 00:06:51 +08:00
|
|
|
insnsi.h: $(INSDEP)
|
2007-09-17 13:16:24 +08:00
|
|
|
$(PERL) $(srcdir)/insns.pl -i $(srcdir)/insns.dat
|
2014-08-08 00:06:51 +08:00
|
|
|
insnsn.c: $(INSDEP)
|
2007-09-17 13:16:24 +08:00
|
|
|
$(PERL) $(srcdir)/insns.pl -n $(srcdir)/insns.dat
|
|
|
|
|
|
|
|
# These files contains all the standard macros that are derived from
|
|
|
|
# the version number.
|
|
|
|
version.h: version version.pl
|
|
|
|
$(PERL) $(srcdir)/version.pl h < $(srcdir)/version > version.h
|
|
|
|
|
|
|
|
version.mac: version version.pl
|
|
|
|
$(PERL) $(srcdir)/version.pl mac < $(srcdir)/version > version.mac
|
|
|
|
|
|
|
|
# This source file is generated from the standard macros file
|
|
|
|
# `standard.mac' by another Perl script. Again, it's part of the
|
|
|
|
# standard distribution.
|
|
|
|
|
2013-06-30 05:30:44 +08:00
|
|
|
macros.c: macros.pl pptok.ph standard.mac version.mac \
|
|
|
|
$(srcdir)/macros/*.mac $(srcdir)/output/*.mac
|
|
|
|
$(PERL) $(srcdir)/macros.pl $(srcdir)/standard.mac version.mac \
|
|
|
|
$(srcdir)/macros/*.mac $(srcdir)/output/*.mac
|
2007-09-17 13:16:24 +08:00
|
|
|
|
|
|
|
# These source files are generated from regs.dat by yet another
|
|
|
|
# perl script.
|
|
|
|
regs.c: regs.dat regs.pl
|
|
|
|
$(PERL) $(srcdir)/regs.pl c $(srcdir)/regs.dat > regs.c
|
|
|
|
regflags.c: regs.dat regs.pl
|
|
|
|
$(PERL) $(srcdir)/regs.pl fc $(srcdir)/regs.dat > regflags.c
|
|
|
|
regdis.c: regs.dat regs.pl
|
|
|
|
$(PERL) $(srcdir)/regs.pl dc $(srcdir)/regs.dat > regdis.c
|
2013-06-30 05:30:44 +08:00
|
|
|
regdis.h: regs.dat regs.pl
|
|
|
|
$(PERL) $(srcdir)/regs.pl dh $(srcdir)/regs.dat > regdis.h
|
2007-09-17 13:16:24 +08:00
|
|
|
regvals.c: regs.dat regs.pl
|
|
|
|
$(PERL) $(srcdir)/regs.pl vc $(srcdir)/regs.dat > regvals.c
|
|
|
|
regs.h: regs.dat regs.pl
|
|
|
|
$(PERL) $(srcdir)/regs.pl h $(srcdir)/regs.dat > regs.h
|
|
|
|
|
|
|
|
# Assembler token hash
|
|
|
|
tokhash.c: insns.dat regs.dat tokens.dat tokhash.pl perllib/phash.ph
|
2007-09-25 03:30:54 +08:00
|
|
|
$(PERL) $(srcdir)/tokhash.pl c $(srcdir)/insns.dat $(srcdir)/regs.dat \
|
2007-09-17 13:16:24 +08:00
|
|
|
$(srcdir)/tokens.dat > tokhash.c
|
|
|
|
|
2007-09-25 03:30:54 +08:00
|
|
|
# Assembler token metadata
|
|
|
|
tokens.h: insns.dat regs.dat tokens.dat tokhash.pl perllib/phash.ph
|
|
|
|
$(PERL) $(srcdir)/tokhash.pl h $(srcdir)/insns.dat $(srcdir)/regs.dat \
|
|
|
|
$(srcdir)/tokens.dat > tokens.h
|
|
|
|
|
2007-09-17 13:16:24 +08:00
|
|
|
# Preprocessor token hash
|
|
|
|
pptok.h: pptok.dat pptok.pl perllib/phash.ph
|
|
|
|
$(PERL) $(srcdir)/pptok.pl h $(srcdir)/pptok.dat pptok.h
|
|
|
|
pptok.c: pptok.dat pptok.pl perllib/phash.ph
|
|
|
|
$(PERL) $(srcdir)/pptok.pl c $(srcdir)/pptok.dat pptok.c
|
2013-06-30 05:30:44 +08:00
|
|
|
pptok.ph: pptok.dat pptok.pl perllib/phash.ph
|
|
|
|
$(PERL) $(srcdir)/pptok.pl ph $(srcdir)/pptok.dat pptok.ph
|
|
|
|
|
|
|
|
# Directives hash
|
|
|
|
directiv.h: directiv.dat directiv.pl perllib/phash.ph
|
|
|
|
$(PERL) $(srcdir)/directiv.pl h $(srcdir)/directiv.dat directiv.h
|
|
|
|
directiv.c: directiv.dat directiv.pl perllib/phash.ph
|
|
|
|
$(PERL) $(srcdir)/directiv.pl c $(srcdir)/directiv.dat directiv.c
|
2007-09-17 13:16:24 +08:00
|
|
|
|
|
|
|
# This target generates all files that require perl.
|
|
|
|
# This allows easier generation of distribution (see dist target).
|
2008-05-13 02:00:50 +08:00
|
|
|
PERLREQ = macros.c insnsb.c insnsa.c insnsd.c insnsi.h insnsn.c \
|
2007-09-25 03:30:54 +08:00
|
|
|
regs.c regs.h regflags.c regdis.c regvals.c tokhash.c tokens.h \
|
2013-11-10 02:16:11 +08:00
|
|
|
version.h version.mac pptok.h pptok.c iflag.c iflag.h
|
2007-09-17 13:16:24 +08:00
|
|
|
perlreq: $(PERLREQ)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
-del /f *.$(O)
|
|
|
|
-del /f *.s
|
|
|
|
-del /f *.i
|
2010-04-22 07:40:38 +08:00
|
|
|
-del /f lib\*.$(O)
|
|
|
|
-del /f lib\*.s
|
|
|
|
-del /f lib\*.i
|
2007-09-17 13:16:24 +08:00
|
|
|
-del /f output\*.$(O)
|
|
|
|
-del /f output\*.s
|
|
|
|
-del /f output\*.i
|
|
|
|
-del /f nasm$(X)
|
|
|
|
-del /f ndisasm$(X)
|
|
|
|
rem cd rdoff && $(MAKE) clean
|
|
|
|
|
|
|
|
distclean: clean
|
|
|
|
-del /f config.h
|
|
|
|
-del /f config.log
|
|
|
|
-del /f config.status
|
|
|
|
-del /f Makefile
|
|
|
|
-del /f *~
|
|
|
|
-del /f *.bak
|
|
|
|
-del /f *.lst
|
|
|
|
-del /f *.bin
|
|
|
|
-del /f output\*~
|
|
|
|
-del /f output\*.bak
|
|
|
|
-del /f test\*.lst
|
|
|
|
-del /f test\*.bin
|
|
|
|
-del /f test\*.$(O)
|
|
|
|
-del /f test\*.bin
|
|
|
|
-del /f/s autom4te*.cache
|
|
|
|
rem cd rdoff && $(MAKE) distclean
|
|
|
|
|
|
|
|
cleaner: clean
|
|
|
|
-del /f $(PERLREQ)
|
|
|
|
-del /f *.man
|
|
|
|
-del /f nasm.spec
|
|
|
|
rem cd doc && $(MAKE) clean
|
|
|
|
|
|
|
|
spotless: distclean cleaner
|
|
|
|
-del /f doc\Makefile
|
|
|
|
-del doc\*~
|
|
|
|
-del doc\*.bak
|
|
|
|
|
|
|
|
strip:
|
|
|
|
|
|
|
|
rdf:
|
|
|
|
# cd rdoff && $(MAKE)
|
|
|
|
|
|
|
|
doc:
|
|
|
|
# cd doc && $(MAKE) all
|
|
|
|
|
|
|
|
everything: all doc rdf
|
|
|
|
|
|
|
|
#-- Magic hints to mkdep.pl --#
|
|
|
|
# @object-ending: ".$(O)"
|
|
|
|
# @path-separator: "/"
|
2007-09-28 12:35:04 +08:00
|
|
|
# @exclude: "config.h"
|
2007-09-17 13:16:24 +08:00
|
|
|
#-- Everything below is generated by mkdep.pl - do not edit --#
|
2013-11-25 02:56:49 +08:00
|
|
|
assemble.$(O): assemble.c assemble.h compiler.h directiv.h disp8.h iflag.h \
|
2013-11-25 03:18:50 +08:00
|
|
|
iflaggen.h insns.h insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h \
|
|
|
|
regs.h tables.h tokens.h
|
2008-06-15 07:53:48 +08:00
|
|
|
crc64.$(O): crc64.c compiler.h nasmlib.h
|
2010-06-16 01:47:16 +08:00
|
|
|
directiv.$(O): directiv.c compiler.h directiv.h hashtbl.h insnsi.h nasm.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
|
2013-11-25 03:18:50 +08:00
|
|
|
disasm.$(O): disasm.c compiler.h directiv.h disasm.h disp8.h iflag.h \
|
|
|
|
iflaggen.h insns.h insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h \
|
|
|
|
regdis.h regs.h sync.h tables.h tokens.h
|
2013-11-25 02:56:49 +08:00
|
|
|
disp8.$(O): disp8.c compiler.h directiv.h disp8.h insnsi.h nasm.h nasmlib.h \
|
|
|
|
opflags.h pptok.h preproc.h regs.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
eval.$(O): eval.c compiler.h directiv.h eval.h float.h insnsi.h labels.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
exprlib.$(O): exprlib.c compiler.h directiv.h insnsi.h nasm.h nasmlib.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
opflags.h pptok.h preproc.h regs.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
float.$(O): float.c compiler.h directiv.h float.h insnsi.h nasm.h nasmlib.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
opflags.h pptok.h preproc.h regs.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
hashtbl.$(O): hashtbl.c compiler.h directiv.h hashtbl.h insnsi.h nasm.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
|
2013-11-25 03:18:50 +08:00
|
|
|
iflag.$(O): iflag.c compiler.h iflag.h iflaggen.h
|
2010-04-22 07:43:20 +08:00
|
|
|
ilog2.$(O): ilog2.c compiler.h nasmlib.h
|
2013-11-25 03:18:50 +08:00
|
|
|
insnsa.$(O): insnsa.c compiler.h directiv.h iflag.h iflaggen.h insns.h \
|
|
|
|
insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h \
|
|
|
|
tokens.h
|
|
|
|
insnsb.$(O): insnsb.c compiler.h directiv.h iflag.h iflaggen.h insns.h \
|
|
|
|
insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h \
|
|
|
|
tokens.h
|
|
|
|
insnsd.$(O): insnsd.c compiler.h directiv.h iflag.h iflaggen.h insns.h \
|
|
|
|
insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h \
|
|
|
|
tokens.h
|
2013-10-24 20:45:06 +08:00
|
|
|
insnsn.$(O): insnsn.c compiler.h insnsi.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
labels.$(O): labels.c compiler.h directiv.h hashtbl.h insnsi.h nasm.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
|
2007-09-29 01:50:20 +08:00
|
|
|
lib/snprintf.$(O): lib/snprintf.c compiler.h nasmlib.h
|
2009-08-11 06:56:52 +08:00
|
|
|
lib/strlcpy.$(O): lib/strlcpy.c compiler.h
|
2007-09-29 01:50:20 +08:00
|
|
|
lib/vsnprintf.$(O): lib/vsnprintf.c compiler.h nasmlib.h
|
2010-06-16 01:47:16 +08:00
|
|
|
listing.$(O): listing.c compiler.h directiv.h insnsi.h listing.h nasm.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
macros.$(O): macros.c compiler.h directiv.h hashtbl.h insnsi.h nasm.h \
|
2009-12-01 05:28:31 +08:00
|
|
|
nasmlib.h opflags.h output/outform.h pptok.h preproc.h regs.h tables.h
|
2013-11-10 02:28:05 +08:00
|
|
|
nasm.$(O): nasm.c assemble.h compiler.h directiv.h eval.h float.h iflag.h \
|
2013-11-25 03:18:50 +08:00
|
|
|
iflaggen.h insns.h insnsi.h labels.h listing.h nasm.h nasmlib.h opflags.h \
|
2013-11-10 02:28:05 +08:00
|
|
|
output/outform.h parser.h pptok.h preproc.h raa.h regs.h saa.h stdscan.h \
|
|
|
|
tables.h tokens.h
|
2013-11-25 03:18:50 +08:00
|
|
|
nasmlib.$(O): nasmlib.c compiler.h directiv.h iflag.h iflaggen.h insns.h \
|
|
|
|
insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h \
|
|
|
|
tokens.h
|
|
|
|
ndisasm.$(O): ndisasm.c compiler.h directiv.h disasm.h iflag.h iflaggen.h \
|
|
|
|
insns.h insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h sync.h \
|
2013-11-10 02:28:05 +08:00
|
|
|
tables.h tokens.h
|
2010-06-16 01:47:16 +08:00
|
|
|
output/nulldbg.$(O): output/nulldbg.c compiler.h directiv.h insnsi.h nasm.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
output/nullout.$(O): output/nullout.c compiler.h directiv.h insnsi.h nasm.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
nasmlib.h opflags.h output/outlib.h pptok.h preproc.h regs.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
output/outaout.$(O): output/outaout.c compiler.h directiv.h eval.h insnsi.h \
|
2009-12-01 05:28:31 +08:00
|
|
|
nasm.h nasmlib.h opflags.h output/outform.h output/outlib.h pptok.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
preproc.h raa.h regs.h saa.h stdscan.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
output/outas86.$(O): output/outas86.c compiler.h directiv.h insnsi.h nasm.h \
|
|
|
|
nasmlib.h opflags.h output/outform.h output/outlib.h pptok.h preproc.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
raa.h regs.h saa.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
output/outbin.$(O): output/outbin.c compiler.h directiv.h eval.h insnsi.h \
|
2009-12-01 05:28:31 +08:00
|
|
|
labels.h nasm.h nasmlib.h opflags.h output/outform.h output/outlib.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
pptok.h preproc.h regs.h saa.h stdscan.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
output/outcoff.$(O): output/outcoff.c compiler.h directiv.h eval.h insnsi.h \
|
|
|
|
nasm.h nasmlib.h opflags.h output/outform.h output/outlib.h output/pecoff.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
pptok.h preproc.h raa.h regs.h saa.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
output/outdbg.$(O): output/outdbg.c compiler.h directiv.h insnsi.h nasm.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
nasmlib.h opflags.h output/outform.h pptok.h preproc.h regs.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
output/outelf.$(O): output/outelf.c compiler.h directiv.h insnsi.h nasm.h \
|
2009-12-01 05:28:31 +08:00
|
|
|
nasmlib.h opflags.h output/dwarf.h output/elf.h output/outelf.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
output/outform.h pptok.h preproc.h regs.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
output/outelf32.$(O): output/outelf32.c compiler.h directiv.h eval.h \
|
2009-12-01 05:28:31 +08:00
|
|
|
insnsi.h nasm.h nasmlib.h opflags.h output/dwarf.h output/elf.h \
|
2010-01-03 21:19:43 +08:00
|
|
|
output/outelf.h output/outform.h output/outlib.h output/stabs.h pptok.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
preproc.h raa.h rbtree.h regs.h saa.h stdscan.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
output/outelf64.$(O): output/outelf64.c compiler.h directiv.h eval.h \
|
2009-12-01 05:28:31 +08:00
|
|
|
insnsi.h nasm.h nasmlib.h opflags.h output/dwarf.h output/elf.h \
|
2010-01-03 21:19:43 +08:00
|
|
|
output/outelf.h output/outform.h output/outlib.h output/stabs.h pptok.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
preproc.h raa.h rbtree.h regs.h saa.h stdscan.h tables.h
|
2012-02-04 04:06:04 +08:00
|
|
|
output/outelfx32.$(O): output/outelfx32.c compiler.h directiv.h eval.h \
|
|
|
|
insnsi.h nasm.h nasmlib.h opflags.h output/dwarf.h output/elf.h \
|
|
|
|
output/outelf.h output/outform.h output/outlib.h output/stabs.h pptok.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
preproc.h raa.h rbtree.h regs.h saa.h stdscan.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
output/outform.$(O): output/outform.c compiler.h directiv.h insnsi.h nasm.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
nasmlib.h opflags.h output/outform.h pptok.h preproc.h regs.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
output/outieee.$(O): output/outieee.c compiler.h directiv.h insnsi.h nasm.h \
|
|
|
|
nasmlib.h opflags.h output/outform.h output/outlib.h pptok.h preproc.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
regs.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
output/outlib.$(O): output/outlib.c compiler.h directiv.h insnsi.h nasm.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
nasmlib.h opflags.h output/outlib.h pptok.h preproc.h regs.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
output/outmac32.$(O): output/outmac32.c compiler.h directiv.h eval.h \
|
2009-12-01 05:28:31 +08:00
|
|
|
insnsi.h nasm.h nasmlib.h opflags.h output/outform.h output/outlib.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
pptok.h preproc.h raa.h regs.h saa.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
output/outmac64.$(O): output/outmac64.c compiler.h directiv.h insnsi.h \
|
2009-12-01 05:28:31 +08:00
|
|
|
nasm.h nasmlib.h opflags.h output/outform.h output/outlib.h pptok.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
preproc.h raa.h regs.h saa.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
output/outobj.$(O): output/outobj.c compiler.h directiv.h eval.h insnsi.h \
|
2009-12-01 05:28:31 +08:00
|
|
|
nasm.h nasmlib.h opflags.h output/outform.h output/outlib.h pptok.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
preproc.h regs.h stdscan.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
output/outrdf2.$(O): output/outrdf2.c compiler.h directiv.h insnsi.h nasm.h \
|
|
|
|
nasmlib.h opflags.h output/outform.h output/outlib.h pptok.h preproc.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
rdoff/rdoff.h regs.h saa.h tables.h
|
2013-11-25 03:18:50 +08:00
|
|
|
parser.$(O): parser.c compiler.h directiv.h eval.h float.h iflag.h \
|
|
|
|
iflaggen.h insns.h insnsi.h nasm.h nasmlib.h opflags.h parser.h pptok.h \
|
|
|
|
preproc.h regs.h stdscan.h tables.h tokens.h
|
2007-10-03 12:13:18 +08:00
|
|
|
pptok.$(O): pptok.c compiler.h hashtbl.h nasmlib.h pptok.h preproc.h
|
2012-05-07 15:34:27 +08:00
|
|
|
preproc-nop.$(O): preproc-nop.c compiler.h directiv.h insnsi.h nasm.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
nasmlib.h opflags.h pptok.h preproc.h regs.h tables.h
|
2010-06-16 01:47:16 +08:00
|
|
|
preproc.$(O): preproc.c compiler.h directiv.h eval.h hashtbl.h insnsi.h \
|
2009-12-01 05:28:31 +08:00
|
|
|
nasm.h nasmlib.h opflags.h pptok.h preproc.h quote.h regs.h stdscan.h \
|
|
|
|
tables.h tokens.h
|
2008-06-04 23:49:10 +08:00
|
|
|
quote.$(O): quote.c compiler.h nasmlib.h quote.h
|
2008-06-10 08:40:16 +08:00
|
|
|
raa.$(O): raa.c compiler.h nasmlib.h raa.h
|
2008-10-31 01:58:28 +08:00
|
|
|
rbtree.$(O): rbtree.c compiler.h rbtree.h
|
2008-05-28 05:34:53 +08:00
|
|
|
regdis.$(O): regdis.c regdis.h regs.h
|
2010-06-16 01:47:16 +08:00
|
|
|
regflags.$(O): regflags.c compiler.h directiv.h insnsi.h nasm.h nasmlib.h \
|
2009-12-01 05:28:31 +08:00
|
|
|
opflags.h pptok.h preproc.h regs.h tables.h
|
2013-10-24 20:45:06 +08:00
|
|
|
regs.$(O): regs.c compiler.h insnsi.h tables.h
|
|
|
|
regvals.$(O): regvals.c compiler.h insnsi.h tables.h
|
2008-06-10 08:32:43 +08:00
|
|
|
saa.$(O): saa.c compiler.h nasmlib.h saa.h
|
2013-11-25 03:18:50 +08:00
|
|
|
stdscan.$(O): stdscan.c compiler.h directiv.h iflag.h iflaggen.h insns.h \
|
|
|
|
insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h quote.h regs.h \
|
|
|
|
stdscan.h tables.h tokens.h
|
2010-06-16 01:47:16 +08:00
|
|
|
strfunc.$(O): strfunc.c compiler.h directiv.h insnsi.h nasm.h nasmlib.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
opflags.h pptok.h preproc.h regs.h tables.h
|
2007-09-28 12:35:04 +08:00
|
|
|
sync.$(O): sync.c compiler.h nasmlib.h sync.h
|
2013-11-25 03:18:50 +08:00
|
|
|
tokhash.$(O): tokhash.c compiler.h directiv.h hashtbl.h iflag.h iflaggen.h \
|
|
|
|
insns.h insnsi.h nasm.h nasmlib.h opflags.h pptok.h preproc.h regs.h \
|
|
|
|
tables.h tokens.h
|
2010-06-16 01:47:16 +08:00
|
|
|
ver.$(O): ver.c compiler.h directiv.h insnsi.h nasm.h nasmlib.h opflags.h \
|
2013-10-24 20:45:06 +08:00
|
|
|
pptok.h preproc.h regs.h tables.h version.h
|