2007-09-28 10:46:55 +08:00
|
|
|
# -*- makefile -*-
|
|
|
|
#
|
|
|
|
# Makefile for cross-compiling NASM from Linux
|
|
|
|
# to DOS, Win32 or OS/2 using OpenWatcom.
|
|
|
|
#
|
2008-01-22 03:50:31 +08:00
|
|
|
# Please see http://bugzilla.openwatcom.org/show_bug.cgi?id=751
|
|
|
|
# for some caveats in using OpenWatcom as a cross-compiler
|
|
|
|
# from Linux, in particular:
|
|
|
|
#
|
|
|
|
# > Second and more importantly, the makefile needs to ensure that the
|
|
|
|
# > proper headers are included. This is normally not a problem when
|
|
|
|
# > building on DOS, Windows, or OS/2, as they share the same C
|
|
|
|
# > library headers. But when cross-compiling from (or to) Linux, it
|
|
|
|
# > is crucial.
|
2008-05-13 02:00:50 +08:00
|
|
|
# >
|
2008-01-22 03:50:31 +08:00
|
|
|
# > This may be accomplished by setting the INCLUDE env var in the
|
|
|
|
# > makefile, or setting OS2_INCLUDE, DOS_INCLUDE, NT_INCLUDE env vars
|
|
|
|
# > *and* making sure that the proper -bt switch is used, or passing a
|
|
|
|
# > switch like -I"$(%WATCOM)/h". The last variant is probably the
|
|
|
|
# > easiest to implement and least likely to break.
|
|
|
|
#
|
2007-09-28 10:46:55 +08:00
|
|
|
|
|
|
|
top_srcdir = .
|
|
|
|
srcdir = .
|
|
|
|
prefix = C:/Program Files/NASM
|
|
|
|
exec_prefix = $(prefix)
|
|
|
|
bindir = $(prefix)/bin
|
|
|
|
mandir = $(prefix)/man
|
|
|
|
|
|
|
|
CC = wcl386
|
2008-05-13 02:00:50 +08:00
|
|
|
DEBUG =
|
2008-02-17 07:44:24 +08:00
|
|
|
CFLAGS = -6 -ox -wx -ze -fpi $(DEBUG)
|
2008-01-22 03:50:31 +08:00
|
|
|
BUILD_CFLAGS = $(CFLAGS) $(TARGET_FLAGS) # -I$(srcdir)/inttypes
|
2007-10-11 05:55:14 +08:00
|
|
|
INTERNAL_CFLAGS = -I$(srcdir) -I. \
|
|
|
|
-DHAVE_SNPRINTF -DHAVE_VSNPRINTF
|
2007-09-28 10:46:55 +08:00
|
|
|
ALL_CFLAGS = $(BUILD_CFLAGS) $(INTERNAL_CFLAGS)
|
|
|
|
LD = $(CC)
|
|
|
|
LDFLAGS = $(ALL_CFLAGS)
|
2008-05-13 02:00:50 +08:00
|
|
|
LIBS =
|
2007-09-28 10:46:55 +08:00
|
|
|
PERL = perl -I$(srcdir)/perllib
|
|
|
|
|
|
|
|
STRIP = wstrip
|
|
|
|
|
|
|
|
# Binary suffixes
|
|
|
|
O = obj
|
|
|
|
X = .exe
|
|
|
|
|
|
|
|
# WMAKE errors out if a suffix is declared more than once, including
|
|
|
|
# its own built-in declarations. Thus, we need to explicitly clear the list
|
|
|
|
# first. Also, WMAKE only allows implicit rules that point "to the left"
|
|
|
|
# in this list!
|
|
|
|
.SUFFIXES:
|
|
|
|
.SUFFIXES: .man .1 .$(O) .i .c
|
|
|
|
|
|
|
|
.c.$(O):
|
|
|
|
$(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-10-30 14:29:23 +08:00
|
|
|
NASM = nasm.$(O) nasmlib.$(O) raa.$(O) saa.$(O) rbtree.$(O) \
|
2008-06-09 12:15:01 +08:00
|
|
|
float.$(O) insnsa.$(O) insnsb.$(O) \
|
2008-05-14 05:29:47 +08:00
|
|
|
assemble.$(O) labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) \
|
2008-10-28 13:19:59 +08:00
|
|
|
outform.$(O) outlib.$(O) output/outbin.$(O) \
|
2007-09-28 10:46:55 +08:00
|
|
|
output/outaout.$(O) output/outcoff.$(O) \
|
|
|
|
output/outelf32.$(O) output/outelf64.$(O) \
|
|
|
|
output/outobj.$(O) output/outas86.$(O) output/outrdf2.$(O) \
|
|
|
|
output/outdbg.$(O) output/outieee.$(O) output/outmacho.$(O) \
|
2008-06-04 23:49:10 +08:00
|
|
|
preproc.$(O) quote.$(O) pptok.$(O) macros.$(O) \
|
2008-06-16 07:18:43 +08:00
|
|
|
listing.$(O) eval.$(O) exprlib.$(O) stdscan.$(O) strfunc.$(O) \
|
|
|
|
tokhash.$(O) regvals.$(O) regflags.$(O)
|
2007-09-28 10:46:55 +08:00
|
|
|
|
2008-05-14 05:29:47 +08:00
|
|
|
NDISASM = ndisasm.$(O) disasm.$(O) sync.$(O) nasmlib.$(O) \
|
2008-05-21 05:21:29 +08:00
|
|
|
insnsd.$(O) insnsb.$(O) insnsn.$(O) regs.$(O) regdis.$(O)
|
2008-06-16 14:50:50 +08:00
|
|
|
#-- End File Lists --#
|
2007-09-28 10:46:55 +08:00
|
|
|
|
|
|
|
what:
|
|
|
|
@echo 'Please build "dos", "win32" or "os2"'
|
|
|
|
|
|
|
|
dos:
|
2008-01-22 03:50:31 +08:00
|
|
|
$(MAKE) -f $(MAKEFILE_LIST) all TARGET_FLAGS='-bt=DOS -l=DOS4G'
|
2007-09-28 10:46:55 +08:00
|
|
|
|
|
|
|
win32:
|
2008-01-22 03:50:31 +08:00
|
|
|
$(MAKE) -f $(MAKEFILE_LIST) all TARGET_FLAGS='-bt=NT -l=NT'
|
2007-09-28 10:46:55 +08:00
|
|
|
|
|
|
|
os2:
|
2008-01-22 03:50:31 +08:00
|
|
|
$(MAKE) -f $(MAKEFILE_LIST) all TARGET_FLAGS='-bt=OS2 -l=OS2V2'
|
2007-09-28 10:46:55 +08:00
|
|
|
|
|
|
|
all: nasm$(X) ndisasm$(X)
|
|
|
|
|
|
|
|
nasm$(X): $(NASM)
|
|
|
|
$(LD) $(LDFLAGS) -fe=nasm$(X) $(NASM) $(LIBS)
|
|
|
|
|
|
|
|
ndisasm$(X): $(NDISASM)
|
|
|
|
$(LD) $(LDFLAGS) -fe=ndisasm$(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.
|
|
|
|
|
2008-05-13 02:00:50 +08:00
|
|
|
insnsb.c: insns.dat insns.pl
|
|
|
|
$(PERL) $(srcdir)/insns.pl -b $(srcdir)/insns.dat
|
2007-09-28 10:46:55 +08:00
|
|
|
insnsa.c: insns.dat insns.pl
|
|
|
|
$(PERL) $(srcdir)/insns.pl -a $(srcdir)/insns.dat
|
|
|
|
insnsd.c: insns.dat insns.pl
|
|
|
|
$(PERL) $(srcdir)/insns.pl -d $(srcdir)/insns.dat
|
|
|
|
insnsi.h: insns.dat insns.pl
|
|
|
|
$(PERL) $(srcdir)/insns.pl -i $(srcdir)/insns.dat
|
|
|
|
insnsn.c: insns.dat insns.pl
|
|
|
|
$(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.
|
|
|
|
|
|
|
|
macros.c: macros.pl standard.mac version.mac
|
|
|
|
$(PERL) $(srcdir)/macros.pl $(srcdir)/standard.mac version.mac
|
|
|
|
|
|
|
|
# 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
|
2008-05-21 05:21:29 +08:00
|
|
|
regdis.h: regs.dat regs.pl
|
|
|
|
$(PERL) $(srcdir)/regs.pl dh $(srcdir)/regs.dat > regdis.h
|
2007-09-28 10:46:55 +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
|
|
|
|
$(PERL) $(srcdir)/tokhash.pl c $(srcdir)/insns.dat $(srcdir)/regs.dat \
|
|
|
|
$(srcdir)/tokens.dat > tokhash.c
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
# 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 \
|
2008-05-21 05:21:29 +08:00
|
|
|
regs.c regs.h regflags.c regdis.c regdis.h regvals.c \
|
|
|
|
tokhash.c tokens.h pptok.h pptok.c \
|
|
|
|
version.h version.mac
|
2007-09-28 10:46:55 +08:00
|
|
|
perlreq: $(PERLREQ)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
-rm -f *.$(O)
|
|
|
|
-rm -f *.s
|
|
|
|
-rm -f *.i
|
|
|
|
-rm -f output/*.$(O)
|
|
|
|
-rm -f output/*.s
|
|
|
|
-rm -f output/*.i
|
|
|
|
-rm -f nasm$(X)
|
|
|
|
-rm -f ndisasm$(X)
|
2007-10-11 05:55:14 +08:00
|
|
|
# cd rdoff && $(MAKE) clean
|
2007-09-28 10:46:55 +08:00
|
|
|
|
|
|
|
distclean: clean .SYMBOLIC
|
|
|
|
-rm -f config.h
|
|
|
|
-rm -f config.log
|
|
|
|
-rm -f config.status
|
|
|
|
-rm -f Makefile
|
|
|
|
-rm -f *~
|
|
|
|
-rm -f *.bak
|
|
|
|
-rm -f *.lst
|
|
|
|
-rm -f *.bin
|
|
|
|
-rm -f output/*~
|
|
|
|
-rm -f output/*.bak
|
|
|
|
-rm -f test/*.lst
|
|
|
|
-rm -f test/*.bin
|
|
|
|
-rm -f test/*.$(O)
|
|
|
|
-rm -f test/*.bin
|
|
|
|
-rm -f/s autom4te*.cache
|
2007-10-11 05:55:14 +08:00
|
|
|
# cd rdoff && $(MAKE) distclean
|
2007-09-28 10:46:55 +08:00
|
|
|
|
|
|
|
cleaner: clean .SYMBOLIC
|
|
|
|
-rm -f $(PERLREQ)
|
|
|
|
-rm -f *.man
|
|
|
|
-rm -f nasm.spec
|
2007-10-11 05:55:14 +08:00
|
|
|
# cd doc && $(MAKE) clean
|
2007-09-28 10:46:55 +08:00
|
|
|
|
|
|
|
spotless: distclean cleaner .SYMBOLIC
|
|
|
|
-rm -f doc/Makefile
|
|
|
|
-rm -f doc/*~
|
|
|
|
-rm -f doc/*.bak
|
|
|
|
|
|
|
|
strip:
|
|
|
|
$(STRIP) *.exe
|
|
|
|
|
|
|
|
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-28 10:46:55 +08:00
|
|
|
# @continuation: "\"
|
|
|
|
#-- Everything below is generated by mkdep.pl - do not edit --#
|
2007-09-28 12:35:04 +08:00
|
|
|
assemble.$(O): assemble.c assemble.h compiler.h insns.h insnsi.h nasm.h \
|
2008-06-22 09:19:13 +08:00
|
|
|
nasmlib.h pptok.h preproc.h regs.h tables.h tokens.h version.h
|
2008-06-15 07:53:48 +08:00
|
|
|
crc64.$(O): crc64.c compiler.h nasmlib.h
|
2008-05-21 05:21:29 +08:00
|
|
|
disasm.$(O): disasm.c compiler.h disasm.h insns.h insnsi.h nasm.h nasmlib.h \
|
2008-06-22 09:19:13 +08:00
|
|
|
pptok.h preproc.h regdis.h regs.h sync.h tables.h tokens.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
eval.$(O): eval.c compiler.h eval.h float.h insnsi.h labels.h nasm.h \
|
2008-06-22 09:19:13 +08:00
|
|
|
nasmlib.h pptok.h preproc.h regs.h version.h
|
|
|
|
exprlib.$(O): exprlib.c compiler.h insnsi.h nasm.h nasmlib.h pptok.h \
|
|
|
|
preproc.h regs.h version.h
|
|
|
|
float.$(O): float.c compiler.h float.h insnsi.h nasm.h nasmlib.h pptok.h \
|
|
|
|
preproc.h regs.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
hashtbl.$(O): hashtbl.c compiler.h hashtbl.h insnsi.h nasm.h nasmlib.h \
|
2008-06-22 09:19:13 +08:00
|
|
|
pptok.h preproc.h regs.h version.h
|
|
|
|
insnsa.$(O): insnsa.c compiler.h insns.h insnsi.h nasm.h nasmlib.h pptok.h \
|
|
|
|
preproc.h regs.h tokens.h version.h
|
|
|
|
insnsb.$(O): insnsb.c compiler.h insns.h insnsi.h nasm.h nasmlib.h pptok.h \
|
|
|
|
preproc.h regs.h tokens.h version.h
|
|
|
|
insnsd.$(O): insnsd.c compiler.h insns.h insnsi.h nasm.h nasmlib.h pptok.h \
|
|
|
|
preproc.h regs.h tokens.h version.h
|
2008-05-21 05:21:29 +08:00
|
|
|
insnsn.$(O): insnsn.c compiler.h insnsi.h tables.h
|
2008-06-22 09:19:13 +08:00
|
|
|
labels.$(O): labels.c compiler.h hashtbl.h insnsi.h nasm.h nasmlib.h pptok.h \
|
|
|
|
preproc.h regs.h version.h
|
2007-09-29 01:50:20 +08:00
|
|
|
lib/snprintf.$(O): lib/snprintf.c compiler.h nasmlib.h
|
|
|
|
lib/vsnprintf.$(O): lib/vsnprintf.c compiler.h nasmlib.h
|
2007-09-28 12:35:04 +08:00
|
|
|
listing.$(O): listing.c compiler.h insnsi.h listing.h nasm.h nasmlib.h \
|
2008-06-22 09:19:13 +08:00
|
|
|
pptok.h preproc.h regs.h version.h
|
2008-09-10 00:54:47 +08:00
|
|
|
macros.$(O): macros.c compiler.h hashtbl.h insnsi.h nasm.h nasmlib.h \
|
|
|
|
outform.h pptok.h preproc.h regs.h tables.h version.h
|
2007-10-30 16:13:27 +08:00
|
|
|
nasm.$(O): nasm.c assemble.h compiler.h eval.h float.h insns.h insnsi.h \
|
|
|
|
labels.h listing.h nasm.h nasmlib.h outform.h parser.h pptok.h preproc.h \
|
2008-06-10 08:40:16 +08:00
|
|
|
raa.h regs.h saa.h stdscan.h tokens.h version.h
|
2008-06-22 09:19:13 +08:00
|
|
|
nasmlib.$(O): nasmlib.c compiler.h insns.h insnsi.h nasm.h nasmlib.h pptok.h \
|
|
|
|
preproc.h regs.h tokens.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
ndisasm.$(O): ndisasm.c compiler.h disasm.h insns.h insnsi.h nasm.h \
|
2008-06-22 09:19:13 +08:00
|
|
|
nasmlib.h pptok.h preproc.h regs.h sync.h tokens.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
outform.$(O): outform.c compiler.h insnsi.h nasm.h nasmlib.h outform.h \
|
2008-06-22 09:19:13 +08:00
|
|
|
pptok.h preproc.h regs.h version.h
|
2008-10-28 13:19:59 +08:00
|
|
|
outlib.$(O): outlib.c compiler.h insnsi.h nasm.h nasmlib.h outlib.h pptok.h \
|
|
|
|
preproc.h regs.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
output/outaout.$(O): output/outaout.c compiler.h insnsi.h nasm.h nasmlib.h \
|
2008-10-30 12:03:17 +08:00
|
|
|
outform.h outlib.h pptok.h preproc.h raa.h regs.h saa.h stdscan.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
output/outas86.$(O): output/outas86.c compiler.h insnsi.h nasm.h nasmlib.h \
|
2008-10-30 12:03:17 +08:00
|
|
|
outform.h outlib.h pptok.h preproc.h raa.h regs.h saa.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
output/outbin.$(O): output/outbin.c compiler.h eval.h insnsi.h labels.h \
|
2008-10-30 12:03:17 +08:00
|
|
|
nasm.h nasmlib.h outform.h outlib.h pptok.h preproc.h regs.h saa.h \
|
|
|
|
stdscan.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
output/outcoff.$(O): output/outcoff.c compiler.h insnsi.h nasm.h nasmlib.h \
|
2008-10-30 12:03:17 +08:00
|
|
|
outform.h outlib.h pptok.h preproc.h raa.h regs.h saa.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
output/outdbg.$(O): output/outdbg.c compiler.h insnsi.h nasm.h nasmlib.h \
|
2008-06-22 09:19:13 +08:00
|
|
|
outform.h pptok.h preproc.h regs.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
output/outelf32.$(O): output/outelf32.c compiler.h insnsi.h nasm.h nasmlib.h \
|
2008-10-28 13:19:59 +08:00
|
|
|
outform.h outlib.h pptok.h preproc.h raa.h regs.h saa.h stdscan.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
output/outelf64.$(O): output/outelf64.c compiler.h insnsi.h nasm.h nasmlib.h \
|
2008-10-30 12:03:17 +08:00
|
|
|
outform.h outlib.h pptok.h preproc.h raa.h regs.h saa.h stdscan.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
output/outieee.$(O): output/outieee.c compiler.h insnsi.h nasm.h nasmlib.h \
|
2008-06-22 09:19:13 +08:00
|
|
|
outform.h pptok.h preproc.h regs.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
output/outmacho.$(O): output/outmacho.c compiler.h insnsi.h nasm.h nasmlib.h \
|
2008-10-30 12:03:17 +08:00
|
|
|
outform.h outlib.h pptok.h preproc.h raa.h regs.h saa.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
output/outobj.$(O): output/outobj.c compiler.h insnsi.h nasm.h nasmlib.h \
|
2008-06-22 09:19:13 +08:00
|
|
|
outform.h pptok.h preproc.h regs.h stdscan.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
output/outrdf.$(O): output/outrdf.c compiler.h insnsi.h nasm.h nasmlib.h \
|
2008-06-22 09:19:13 +08:00
|
|
|
outform.h pptok.h preproc.h regs.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
output/outrdf2.$(O): output/outrdf2.c compiler.h insnsi.h nasm.h nasmlib.h \
|
2008-06-22 09:19:13 +08:00
|
|
|
outform.h pptok.h preproc.h rdoff/rdoff.h regs.h saa.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
parser.$(O): parser.c compiler.h float.h insns.h insnsi.h nasm.h nasmlib.h \
|
2008-06-22 09:19:13 +08:00
|
|
|
parser.h pptok.h preproc.h regs.h stdscan.h tables.h tokens.h version.h
|
2007-10-03 12:13:18 +08:00
|
|
|
pptok.$(O): pptok.c compiler.h hashtbl.h nasmlib.h pptok.h preproc.h
|
2008-05-21 05:21:29 +08:00
|
|
|
preproc.$(O): preproc.c compiler.h hashtbl.h insnsi.h nasm.h nasmlib.h \
|
2008-06-04 23:49:10 +08:00
|
|
|
pptok.h preproc.h quote.h regs.h stdscan.h tables.h tokens.h version.h
|
|
|
|
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-30 14:29:23 +08:00
|
|
|
rbtree.$(O): rbtree.c compiler.h nasmlib.h rbtree.h
|
2008-05-28 05:34:53 +08:00
|
|
|
regdis.$(O): regdis.c regdis.h regs.h
|
2008-06-22 09:19:13 +08:00
|
|
|
regflags.$(O): regflags.c compiler.h insnsi.h nasm.h nasmlib.h pptok.h \
|
|
|
|
preproc.h regs.h tables.h version.h
|
2008-05-21 05:21:29 +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
|
2008-06-22 09:19:13 +08:00
|
|
|
stdscan.$(O): stdscan.c compiler.h insns.h insnsi.h nasm.h nasmlib.h pptok.h \
|
|
|
|
preproc.h quote.h regs.h stdscan.h tokens.h version.h
|
|
|
|
strfunc.$(O): strfunc.c compiler.h insnsi.h nasm.h nasmlib.h pptok.h \
|
|
|
|
preproc.h regs.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
sync.$(O): sync.c compiler.h nasmlib.h sync.h
|
2007-10-03 12:13:18 +08:00
|
|
|
tokhash.$(O): tokhash.c compiler.h hashtbl.h insns.h insnsi.h nasm.h \
|
2008-06-22 09:19:13 +08:00
|
|
|
nasmlib.h pptok.h preproc.h regs.h tokens.h version.h
|