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-05-14 05:29:47 +08:00
|
|
|
NASM = nasm.$(O) nasmlib.$(O) float.$(O) insnsa.$(O) insnsb.$(O) \
|
|
|
|
assemble.$(O) labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) \
|
2007-09-17 13:16:24 +08:00
|
|
|
outform.$(O) output/outbin.$(O) \
|
|
|
|
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-05-21 05:21:29 +08:00
|
|
|
preproc.$(O) pptok.$(O) macros.$(O) \
|
|
|
|
listing.$(O) eval.$(O) exprlib.$(O) stdscan.$(O) tokhash.$(O) \
|
|
|
|
regvals.$(O) regflags.$(O)
|
2007-09-17 13:16:24 +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)
|
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.
|
|
|
|
|
2008-05-13 02:00:50 +08:00
|
|
|
insnsb.c: insns.dat insns.pl
|
|
|
|
$(PERL) $(srcdir)/insns.pl -b $(srcdir)/insns.dat
|
2007-09-17 13:16:24 +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
|
|
|
|
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
|
|
|
|
|
|
|
|
# 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 \
|
2007-09-17 13:16:24 +08:00
|
|
|
version.h version.mac pptok.h pptok.c
|
|
|
|
perlreq: $(PERLREQ)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
-del /f *.$(O)
|
|
|
|
-del /f *.s
|
|
|
|
-del /f *.i
|
|
|
|
-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 --#
|
2007-09-28 12:35:04 +08:00
|
|
|
assemble.$(O): assemble.c assemble.h compiler.h insns.h insnsi.h nasm.h \
|
2008-05-21 05:21:29 +08:00
|
|
|
nasmlib.h pptok.h preproc.h regs.h tables.h tokens.h version.h
|
2007-10-03 12:57:27 +08:00
|
|
|
crc64.$(O): crc64.c compiler.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 \
|
|
|
|
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 \
|
2007-09-20 12:40:37 +08:00
|
|
|
nasmlib.h regs.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
exprlib.$(O): exprlib.c compiler.h insnsi.h nasm.h nasmlib.h regs.h \
|
|
|
|
version.h
|
2007-10-30 16:13:27 +08:00
|
|
|
float.$(O): float.c compiler.h float.h insnsi.h nasm.h nasmlib.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 \
|
|
|
|
regs.h version.h
|
2008-05-14 05:29:47 +08:00
|
|
|
insnsa.$(O): insnsa.c compiler.h insns.h insnsi.h nasm.h nasmlib.h regs.h \
|
|
|
|
tokens.h version.h
|
2008-05-13 02:00:50 +08:00
|
|
|
insnsb.$(O): insnsb.c compiler.h insns.h insnsi.h nasm.h nasmlib.h regs.h \
|
2007-09-28 12:35:04 +08:00
|
|
|
tokens.h version.h
|
2008-05-14 05:29:47 +08:00
|
|
|
insnsd.$(O): insnsd.c compiler.h insns.h insnsi.h nasm.h nasmlib.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
|
2007-09-28 12:35:04 +08:00
|
|
|
labels.$(O): labels.c compiler.h hashtbl.h insnsi.h nasm.h nasmlib.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 \
|
|
|
|
regs.h version.h
|
2008-05-21 05:21:29 +08:00
|
|
|
macros.$(O): macros.c compiler.h insnsi.h tables.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 \
|
|
|
|
regs.h stdscan.h tokens.h version.h
|
2007-09-28 12:35:04 +08:00
|
|
|
nasmlib.$(O): nasmlib.c compiler.h insns.h insnsi.h nasm.h nasmlib.h regs.h \
|
|
|
|
tokens.h version.h
|
|
|
|
ndisasm.$(O): ndisasm.c compiler.h disasm.h insns.h insnsi.h nasm.h \
|
2007-09-25 03:30:54 +08:00
|
|
|
nasmlib.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 \
|
|
|
|
regs.h version.h
|
|
|
|
output/outaout.$(O): output/outaout.c compiler.h insnsi.h nasm.h nasmlib.h \
|
|
|
|
outform.h regs.h stdscan.h version.h
|
|
|
|
output/outas86.$(O): output/outas86.c compiler.h insnsi.h nasm.h nasmlib.h \
|
|
|
|
outform.h regs.h version.h
|
|
|
|
output/outbin.$(O): output/outbin.c compiler.h eval.h insnsi.h labels.h \
|
|
|
|
nasm.h nasmlib.h outform.h regs.h stdscan.h version.h
|
|
|
|
output/outcoff.$(O): output/outcoff.c compiler.h insnsi.h nasm.h nasmlib.h \
|
|
|
|
outform.h regs.h version.h
|
|
|
|
output/outdbg.$(O): output/outdbg.c compiler.h insnsi.h nasm.h nasmlib.h \
|
|
|
|
outform.h regs.h version.h
|
|
|
|
output/outelf32.$(O): output/outelf32.c compiler.h insnsi.h nasm.h nasmlib.h \
|
2008-04-11 05:56:09 +08:00
|
|
|
outform.h regs.h stdscan.h version.h wsaa.h
|
2007-09-28 12:35:04 +08:00
|
|
|
output/outelf64.$(O): output/outelf64.c compiler.h insnsi.h nasm.h nasmlib.h \
|
2008-04-11 05:56:09 +08:00
|
|
|
outform.h regs.h stdscan.h version.h wsaa.h
|
2007-09-28 12:35:04 +08:00
|
|
|
output/outieee.$(O): output/outieee.c compiler.h insnsi.h nasm.h nasmlib.h \
|
|
|
|
outform.h regs.h version.h
|
|
|
|
output/outmacho.$(O): output/outmacho.c compiler.h insnsi.h nasm.h nasmlib.h \
|
|
|
|
outform.h regs.h version.h
|
|
|
|
output/outobj.$(O): output/outobj.c compiler.h insnsi.h nasm.h nasmlib.h \
|
|
|
|
outform.h regs.h stdscan.h version.h
|
|
|
|
output/outrdf.$(O): output/outrdf.c compiler.h insnsi.h nasm.h nasmlib.h \
|
2007-09-20 12:40:37 +08:00
|
|
|
outform.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 \
|
|
|
|
outform.h rdoff/rdoff.h regs.h version.h
|
|
|
|
parser.$(O): parser.c compiler.h float.h insns.h insnsi.h nasm.h nasmlib.h \
|
2008-05-21 05:21:29 +08:00
|
|
|
parser.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 \
|
|
|
|
pptok.h preproc.h regs.h stdscan.h tables.h tokens.h version.h
|
2008-05-28 05:34:53 +08:00
|
|
|
regdis.$(O): regdis.c regdis.h regs.h
|
2008-05-21 05:21:29 +08:00
|
|
|
regflags.$(O): regflags.c compiler.h insnsi.h nasm.h nasmlib.h regs.h \
|
|
|
|
tables.h version.h
|
|
|
|
regs.$(O): regs.c compiler.h insnsi.h tables.h
|
|
|
|
regvals.$(O): regvals.c compiler.h insnsi.h tables.h
|
2007-09-28 12:35:04 +08:00
|
|
|
stdscan.$(O): stdscan.c compiler.h insns.h insnsi.h nasm.h nasmlib.h regs.h \
|
|
|
|
stdscan.h tokens.h version.h
|
|
|
|
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 \
|
|
|
|
nasmlib.h regs.h tokens.h version.h
|