mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
Fix Makefile for MSVC++ 2005, delete obsolete Makefiles
New Makefile for MSVC++ 2005, delete old unmaintained Makefiles.
This commit is contained in:
parent
21d6be423f
commit
e8bfecf275
@ -1,240 +0,0 @@
|
||||
# Makefile for the Netwide Assembler under 32 bit NT console
|
||||
#
|
||||
# The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
||||
# Julian Hall. All rights reserved. The software is
|
||||
# redistributable under the licence given in the file "Licence"
|
||||
# distributed in the NASM archive.
|
||||
#
|
||||
# This Makefile is designed to build NASM with the latest
|
||||
# version of Borland C++Builder and has been tested with
|
||||
# Borland C++ 5.5 (Borland C++Builder 5.0) in combination
|
||||
# Borland MAKE 5.2
|
||||
#
|
||||
# Additionally, the free Borland C++ Compiler 5.5 is supported;
|
||||
# see
|
||||
#
|
||||
# http://www.borland.com/bcppbuilder/freecompiler/
|
||||
#
|
||||
# MAKEFILE is maintained by Stefan.Hoffmeister@Econos.de
|
||||
#
|
||||
|
||||
PERL=perl
|
||||
|
||||
srcdir=.
|
||||
#BINDIR=e:\devel\bcb5\cbuilder5\bin
|
||||
|
||||
# If "BINDIR=C:\...." has not been defined on the command line
|
||||
# assume that the binary files are in the same directory as the
|
||||
# MAKE utility
|
||||
!message ****************************************************
|
||||
!message Note:
|
||||
!message -----
|
||||
!if $d(BINDIR)
|
||||
!message Path to tools set to $(BINDIR)
|
||||
!else
|
||||
BINDIR=$(MAKEDIR)
|
||||
!message Assuming path to tools to be $(BINDIR)
|
||||
!message
|
||||
!message You can change this assumption by specifying
|
||||
!message -DBINDIR=C:\my_path
|
||||
!message as a command line paramter for MAKE
|
||||
!endif
|
||||
!message ****************************************************
|
||||
|
||||
|
||||
CC=$(BINDIR)\bcc32
|
||||
CCFLAGS=-q -Q -tWC -c -O2 -A -d -w-8057
|
||||
# /q: Suppress compiler identification banner
|
||||
# /Q: Extended compiler error information
|
||||
# /-tWC: Windows console mode application
|
||||
# /c: Compile, do not link
|
||||
# /O2: Optimize for speed
|
||||
# /A: ANSI compatible code only
|
||||
# /d: Merge duplicate strings
|
||||
# /-w-8057: Turn off "Parameter <param> never used in function <func>" warning
|
||||
|
||||
LINK=$(BINDIR)\ilink32
|
||||
LINKFLAGS=/V4.0 /q /x /c /ap /L$(BINDIR)\..\LIB # /L -> default LIB directory
|
||||
# /V4.0: marked as Win95 / NT application in PE header
|
||||
# /q: suppress command-line banner
|
||||
# /x: no map file
|
||||
# /c: case sensitive link
|
||||
# /ap: link for 32-bit console application
|
||||
# /L...: path to .lib directory
|
||||
|
||||
|
||||
# default libraries for Win32 console applications
|
||||
LIBRARIES=cw32.lib import32.lib
|
||||
# default startup code for Win32 console applications
|
||||
STARTUP=c0x32.obj
|
||||
|
||||
# default extension for our EXE
|
||||
EXE=.exe
|
||||
# default extension for OBJ files
|
||||
OBJ=obj
|
||||
|
||||
|
||||
SUFFIX= w# # by default, this makefile produces nasmw.exe and ndisasmw.exe
|
||||
|
||||
|
||||
# Builds C files to OBJ
|
||||
.c.$(OBJ):
|
||||
$(CC) $(CCFLAGS) $*.c
|
||||
|
||||
|
||||
NASMOBJS = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) insnsa.$(OBJ) \
|
||||
assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ) \
|
||||
output\outbin.$(OBJ) output\outaout.$(OBJ) output\outcoff.$(OBJ) \
|
||||
output\outelf32.$(OBJ) output\outelf64.$(OBJ) \
|
||||
output\outobj.$(OBJ) output\outas86.$(OBJ) output\outrdf.$(OBJ) output\outdbg.$(OBJ) \
|
||||
output\outrdf2.$(OBJ) output\outieee.$(OBJ) \
|
||||
preproc.$(OBJ) listing.$(OBJ) eval.$(OBJ)
|
||||
|
||||
NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \
|
||||
insnsd.$(OBJ)
|
||||
|
||||
|
||||
BuildAll: nasm$(SUFFIX)$(EXE) ndisasm$(SUFFIX)$(EXE)
|
||||
|
||||
|
||||
# NASM
|
||||
nasm$(SUFFIX)$(EXE): $(NASMOBJS)
|
||||
$(LINK) $(LINKFLAGS) @&&| #open temp response file
|
||||
$(STARTUP) $**
|
||||
nasm$(SUFFIX)$(EXE)
|
||||
# default MAP file name for EXE
|
||||
$(LIBRARIES)
|
||||
| # close temp file, first column!
|
||||
|
||||
|
||||
# NDISASM
|
||||
ndisasm$(SUFFIX)$(EXE): $(NDISASMOBJS)
|
||||
$(LINK) $(LINKFLAGS) @&&| #open temp response file
|
||||
$(STARTUP) $**
|
||||
ndisasm$(SUFFIX)$(EXE)
|
||||
# default MAP file name for EXE
|
||||
$(LIBRARIES)
|
||||
| # close temp file, first column!
|
||||
|
||||
# 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.
|
||||
|
||||
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
|
||||
|
||||
# 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 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
|
||||
|
||||
# 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
|
||||
|
||||
clean:
|
||||
@-del /S *.obj 2> NUL 1>&2
|
||||
@-del /S *.il? 2> NUL 1>&2
|
||||
@-del /S *.tds 2> NUL 1>&2
|
||||
@-del /S *.~* 2> NUL 1>&2
|
||||
@-del /S nasm$(SUFFIX)$(EXE) 2> NUL 1>&2
|
||||
@-del /S ndisasm$(SUFFIX)$(EXE) 2> NUL 1>&2
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".$(OBJ)"
|
||||
# @path-separator: "\"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.$(OBJ): assemble.c preproc.h insns.h pptok.h regs.h regflags.c \
|
||||
config.h version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.$(OBJ): crc64.c
|
||||
disasm.$(OBJ): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
|
||||
version.h nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.$(OBJ): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h
|
||||
float.$(OBJ): float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.$(OBJ): hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h \
|
||||
nasm.h insnsi.h
|
||||
insnsa.$(OBJ): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.$(OBJ): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.$(OBJ): insnsn.c
|
||||
labels.$(OBJ): labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.$(OBJ): listing.c regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h listing.h
|
||||
macros.$(OBJ): macros.c
|
||||
names.$(OBJ): names.c regs.c insnsn.c
|
||||
nasm.$(OBJ): nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h \
|
||||
regs.h outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h \
|
||||
insnsi.h listing.h
|
||||
nasmlib.$(OBJ): nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.$(OBJ): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.$(OBJ): outform.c regs.h config.h outform.h version.h nasm.h \
|
||||
insnsi.h
|
||||
output\outaout.$(OBJ): output\outaout.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\outas86.$(OBJ): output\outas86.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output\outbin.$(OBJ): output\outbin.c labels.h eval.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\outcoff.$(OBJ): output\outcoff.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output\outdbg.$(OBJ): output\outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output\outelf32.$(OBJ): output\outelf32.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\outelf64.$(OBJ): output\outelf64.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\outieee.$(OBJ): output\outieee.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output\outmacho.$(OBJ): output\outmacho.c compiler.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
output\outobj.$(OBJ): output\outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\outrdf.$(OBJ): output\outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output\outrdf2.$(OBJ): output\outrdf2.c rdoff\rdoff.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.$(OBJ): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.$(OBJ): pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.$(OBJ): preproc.c preproc.h macros.c pptok.h regs.h config.h \
|
||||
version.h hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.$(OBJ): regdis.c
|
||||
regflags.$(OBJ): regflags.c
|
||||
regs.$(OBJ): regs.c
|
||||
regvals.$(OBJ): regvals.c
|
||||
stdscan.$(OBJ): stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.$(OBJ): sync.c sync.h
|
||||
tokhash.$(OBJ): tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,200 +0,0 @@
|
||||
# Makefile for the Netwide Assembler under 16-bit DOS (aimed at Borland C)
|
||||
#
|
||||
# The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
||||
# Julian Hall. All rights reserved. The software is
|
||||
# redistributable under the licence given in the file "Licence"
|
||||
# distributed in the NASM archive.
|
||||
#
|
||||
# This Makefile compiles NASM and NDISASM for 16 bit DOS using Borland
|
||||
# C++; tested with version 3.1. It probably should work for any
|
||||
# version of Turbo C++ or Borland C++ from version 3.0 upwards.
|
||||
# For Turbo C++, replace "bcc" with "tcc", and replace "-O1" with "-O".
|
||||
#
|
||||
# Most everything is remarked, and explaned in full, it should be
|
||||
# easy to convert it to another compiler. I tried to make the devision
|
||||
# of information logical, and easy to follow.
|
||||
#
|
||||
# BEFORE YOU USE THIS MAKE FILE!!!
|
||||
#
|
||||
# Make sure the line below is set to the propper location of your standard
|
||||
# Libaries, if not you'll get some errors. Make sure to keep the trailing
|
||||
# backslash, as it's needed, and remeber to use \\ not \ as that will cause
|
||||
# some errors.
|
||||
#
|
||||
# This Makefile was updated with NASM 0.98.31, and could compile that
|
||||
# version correctly using Borland C++ 3.1 under DOS.
|
||||
#
|
||||
|
||||
CC = bcc #compiler
|
||||
|
||||
# opimizations
|
||||
OPTFLAGS = -d -O1 -Ogmp -k-
|
||||
# -d = merge duplicate strings
|
||||
# -O1 = optimize for size
|
||||
# -Og = enable global common subexpression elimination
|
||||
# -Om = enable loop invariant removal
|
||||
# -Op = enable constant propagation
|
||||
# ** WARNING: DO NOT ENABLE -Ov (strength reduction) ON BORLAND C++ 3.1 **
|
||||
# ** NASM IS KNOWN TO MISCOMPILE WITH -Ov **
|
||||
# -k- = omit stack frames where practical
|
||||
#output formats
|
||||
OUTFORMS = -DOF_ONLY -DOF_BIN -DOF_OBJ -DOF_WIN32 -DOF_AS86
|
||||
|
||||
#compiler flags
|
||||
CFLAGS = $(OPTFLAGS) -mh -f- $(OUTFORMS)
|
||||
# -mh = model huge
|
||||
# -f- = no floating point
|
||||
|
||||
LINKFLAGS = -d -mh -M -f-
|
||||
# -d = merge duplicate strings
|
||||
# -M = generate map file (to find address space bottlenecks)
|
||||
|
||||
LIBS = #any libaries to add, out side of the standard libary
|
||||
EXE = .exe #executable file extention (keep the . as the start)
|
||||
OBJ = obj #OBJ file extention
|
||||
LIB = lib #LIB file extension
|
||||
|
||||
.c.$(OBJ):
|
||||
$(CC) $(CFLAGS) -c -o$@ $<
|
||||
|
||||
################################################################
|
||||
# The OBJ files that NASM is dependent on
|
||||
|
||||
NASMOBJS = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) \
|
||||
assemble.$(OBJ) labels.$(OBJ) \
|
||||
parser.$(OBJ) outform.$(OBJ) preproc.$(OBJ) \
|
||||
listing.$(OBJ) eval.$(OBJ) insnsa.$(OBJ)
|
||||
|
||||
################################################################
|
||||
# The OBJ files that NDISASM is dependent on
|
||||
|
||||
NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) \
|
||||
nasmlib.$(OBJ) insnsd.$(OBJ)
|
||||
|
||||
################################################################
|
||||
# The OBJ file for the output formats
|
||||
|
||||
OUTOBJ= output\\outbin.$(OBJ) output\\outaout.$(OBJ) output\\outcoff.$(OBJ) \
|
||||
output\\outelf32.$(OBJ) output\\outelf64.$(OBJ) \
|
||||
output\\outobj.$(OBJ) output\\outas86.$(OBJ) \
|
||||
output\\outdbg.$(OBJ) output\\outrdf2.$(OBJ) output\\outieee.$(OBJ)
|
||||
|
||||
################################################################
|
||||
# Build everything
|
||||
|
||||
all : nasm$(EXE) ndisasm$(EXE)
|
||||
|
||||
################################################################
|
||||
# Rules to put the CFLAGS in a file
|
||||
CFLAGS: Makefile
|
||||
echo $(CFLAGS) > CFLAGS
|
||||
$(MAKE) clean
|
||||
|
||||
################################################################
|
||||
# NASM, NDISASM link. The &&!...! construct in Borland Make
|
||||
# creates a temporary file and inserts its name on the command
|
||||
# line. It works around the DOS 127-character command line
|
||||
# limit.
|
||||
|
||||
nasm$(EXE): $(NASMOBJS) output\\out.$(LIB)
|
||||
$(CC) $(LINKFLAGS) -onasm$(EXE) @&&!
|
||||
$(NASMOBJS)
|
||||
output\\out.$(LIB)
|
||||
!
|
||||
|
||||
ndisasm$(EXE): $(NDISASMOBJS)
|
||||
$(CC) $(LINKFLAGS) -ondisasm$(EXE) @&&!
|
||||
$(NDISASMOBJS)
|
||||
!
|
||||
|
||||
################################################################
|
||||
# Build the output formats as a library
|
||||
# The & ... $? construct tells Borland Make to repeat for all
|
||||
# out of date dependencies
|
||||
output\\out.$(LIB): $(OUTOBJ)
|
||||
-del output\\out.$(LIB)
|
||||
for %a in (output\\*.$(OBJ)) do tlib /C output\\out.$(LIB) +%a
|
||||
|
||||
################################################################
|
||||
# A quick way to delete the OBJ files as well as the binaries.
|
||||
|
||||
clean :
|
||||
-del *.$(OBJ)
|
||||
-del output\\*.$(OBJ)
|
||||
-del output\\out.$(LIB)
|
||||
-del *.$(LIB)
|
||||
-del insnsa_?.c
|
||||
-del nasm$(EXE)
|
||||
-del ndisasm$(EXE)
|
||||
-del *.map
|
||||
-del CFLAGS
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".$(OBJ)"
|
||||
# @path-separator: "\\"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.$(OBJ): assemble.c preproc.h insns.h pptok.h regs.h regflags.c \
|
||||
config.h version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.$(OBJ): crc64.c
|
||||
disasm.$(OBJ): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
|
||||
version.h nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.$(OBJ): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h
|
||||
float.$(OBJ): float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.$(OBJ): hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h \
|
||||
nasm.h insnsi.h
|
||||
insnsa.$(OBJ): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.$(OBJ): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.$(OBJ): insnsn.c
|
||||
labels.$(OBJ): labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.$(OBJ): listing.c regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h listing.h
|
||||
macros.$(OBJ): macros.c
|
||||
names.$(OBJ): names.c regs.c insnsn.c
|
||||
nasm.$(OBJ): nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h \
|
||||
regs.h outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h \
|
||||
insnsi.h listing.h
|
||||
nasmlib.$(OBJ): nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.$(OBJ): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.$(OBJ): outform.c regs.h config.h outform.h version.h nasm.h \
|
||||
insnsi.h
|
||||
output\\outaout.$(OBJ): output\\outaout.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\\outas86.$(OBJ): output\\outas86.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h insnsi.h
|
||||
output\\outbin.$(OBJ): output\\outbin.c labels.h eval.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\\outcoff.$(OBJ): output\\outcoff.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h insnsi.h
|
||||
output\\outdbg.$(OBJ): output\\outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output\\outelf32.$(OBJ): output\\outelf32.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\\outelf64.$(OBJ): output\\outelf64.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\\outieee.$(OBJ): output\\outieee.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h insnsi.h
|
||||
output\\outmacho.$(OBJ): output\\outmacho.c compiler.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
output\\outobj.$(OBJ): output\\outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\\outrdf.$(OBJ): output\\outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output\\outrdf2.$(OBJ): output\\outrdf2.c rdoff\\rdoff.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.$(OBJ): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.$(OBJ): pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.$(OBJ): preproc.c preproc.h macros.c pptok.h regs.h config.h \
|
||||
version.h hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.$(OBJ): regdis.c
|
||||
regflags.$(OBJ): regflags.c
|
||||
regs.$(OBJ): regs.c
|
||||
regvals.$(OBJ): regvals.c
|
||||
stdscan.$(OBJ): stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.$(OBJ): sync.c sync.h
|
||||
tokhash.$(OBJ): tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,129 +0,0 @@
|
||||
# Makefile for the Netwide Assembler under 16-bit DOS
|
||||
#
|
||||
# The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
||||
# Julian Hall. All rights reserved. The software is
|
||||
# redistributable under the licence given in the file "Licence"
|
||||
# distributed in the NASM archive.
|
||||
#
|
||||
# This Makefile is designed to build NASM using a 16-bit DOS C
|
||||
# compiler such as Borland C, and has been tested with Borland C 2.3
|
||||
# and Borland Make.
|
||||
|
||||
# CC = cl
|
||||
# CCFLAGS = /c /O /AL
|
||||
# LINK = cl
|
||||
CC = bcc
|
||||
CCFLAGS = -c -O -ml -A
|
||||
LINK = tlink /c /Lc:\bc\lib
|
||||
LINKFLAGS =
|
||||
LIBRARIES =
|
||||
EXE = .exe#
|
||||
OBJ = obj#
|
||||
|
||||
.c.$(OBJ):
|
||||
$(CC) $(CCFLAGS) $*.c
|
||||
|
||||
NASMOBJS1 = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) insnsa.$(OBJ)
|
||||
NASMOBJS2 = assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ)
|
||||
NASMOBJS3 = output/outbin.$(OBJ) output/outaout.$(OBJ) output/outcoff.$(OBJ) output/outelf32.$(OBJ) output/outelf64.$(OBJ)
|
||||
NASMOBJS4 = output/outobj.$(OBJ) output/outas86.$(OBJ) output/outdbg.$(OBJ) output/outrdf.$(OBJ)
|
||||
NASMOBJS5 = output/outrdf2.$(OBJ) output/outieee.$(OBJ)
|
||||
NASMOBJS6 = preproc.$(OBJ) listing.$(OBJ) eval.$(OBJ)
|
||||
|
||||
NASMOBJS = $(NASMOBJS1) $(NASMOBJS2) $(NASMOBJS3) $(NASMOBJS4) $(NASMOBJS5) \
|
||||
$(NASMOBJS6)
|
||||
|
||||
NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \
|
||||
insnsd.$(OBJ)
|
||||
|
||||
all : nasm$(EXE) ndisasm$(EXE)
|
||||
|
||||
# We have to have a horrible kludge here to get round the 128 character
|
||||
# limit, as usual...
|
||||
nasm$(EXE): $(NASMOBJS)
|
||||
# $(LINK) /Fenasm.exe a*.obj f*.obj insnsa.obj l*.obj na*.obj o*.obj p*.obj
|
||||
echo c0l.obj $(NASMOBJS1) +> nasmobjs.tmp
|
||||
echo $(NASMOBJS2) +>> nasmobjs.tmp
|
||||
echo $(NASMOBJS3) +>> nasmobjs.tmp
|
||||
echo $(NASMOBJS4) +>> nasmobjs.tmp
|
||||
echo $(NASMOBJS5),nasm.exe,,cl.lib, >> nasmobjs.tmp
|
||||
$(LINK) /Tde @nasmobjs.tmp
|
||||
|
||||
ndisasm$(EXE): $(NDISASMOBJS)
|
||||
# $(LINK) /Fendisasm.exe $(NDISASMOBJS)
|
||||
$(LINK) /Tde $(NDISASMOBJS),ndisasm.exe,,cl.lib,
|
||||
|
||||
clean :
|
||||
del *.obj
|
||||
del nasm$(EXE)
|
||||
del ndisasm$(EXE)
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".$(OBJ)"
|
||||
# @path-separator: "/" # Is this really right? -hpa
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.$(OBJ): assemble.c preproc.h insns.h pptok.h regs.h regflags.c \
|
||||
config.h version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.$(OBJ): crc64.c
|
||||
disasm.$(OBJ): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
|
||||
version.h nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.$(OBJ): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h
|
||||
float.$(OBJ): float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.$(OBJ): hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h \
|
||||
nasm.h insnsi.h
|
||||
insnsa.$(OBJ): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.$(OBJ): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.$(OBJ): insnsn.c
|
||||
labels.$(OBJ): labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.$(OBJ): listing.c regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h listing.h
|
||||
macros.$(OBJ): macros.c
|
||||
names.$(OBJ): names.c regs.c insnsn.c
|
||||
nasm.$(OBJ): nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h \
|
||||
regs.h outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h \
|
||||
insnsi.h listing.h
|
||||
nasmlib.$(OBJ): nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.$(OBJ): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.$(OBJ): outform.c regs.h config.h outform.h version.h nasm.h \
|
||||
insnsi.h
|
||||
output/outaout.$(OBJ): output/outaout.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outas86.$(OBJ): output/outas86.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outbin.$(OBJ): output/outbin.c labels.h eval.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outcoff.$(OBJ): output/outcoff.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outdbg.$(OBJ): output/outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outelf32.$(OBJ): output/outelf32.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outelf64.$(OBJ): output/outelf64.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outieee.$(OBJ): output/outieee.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outmacho.$(OBJ): output/outmacho.c compiler.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
output/outobj.$(OBJ): output/outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outrdf.$(OBJ): output/outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outrdf2.$(OBJ): output/outrdf2.c rdoff/rdoff.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.$(OBJ): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.$(OBJ): pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.$(OBJ): preproc.c preproc.h macros.c pptok.h regs.h config.h \
|
||||
version.h hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.$(OBJ): regdis.c
|
||||
regflags.$(OBJ): regflags.c
|
||||
regs.$(OBJ): regs.c
|
||||
regvals.$(OBJ): regvals.c
|
||||
stdscan.$(OBJ): stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.$(OBJ): sync.c sync.h
|
||||
tokhash.$(OBJ): tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,223 +0,0 @@
|
||||
# Static Dev-Cpp/MinGW 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 GNU Lesser General Public License.
|
||||
|
||||
# You may need to adjust these values.
|
||||
|
||||
CC = gcc.exe
|
||||
WINDRES = windres.exe
|
||||
RES =
|
||||
LIBS = -L"C:/Dev-Cpp/lib"
|
||||
INCS = -I"C:/Dev-Cpp/include"
|
||||
CXXINCS = -I"C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include" -I"C:/Dev-Cpp/include/c++/3.4.2/backward" -I"C:/Dev-Cpp/include/c++/3.4.2/mingw32" -I"C:/Dev-Cpp/include/c++/3.4.2" -I"C:/Dev-Cpp/include"
|
||||
PERL = perl
|
||||
RM = rm -f
|
||||
|
||||
# You _shouldn't_ need to adjust anything below this line.
|
||||
|
||||
NASMEXE = nasmw.exe
|
||||
NDISASMEXE = ndisasmw.exe
|
||||
CXXFLAGS = $(CXXINCS)
|
||||
CFLAGS = $(INCS) -I. -O2
|
||||
|
||||
.c.o:
|
||||
$(CC) $(CFLAGS) -o $@ -c $<
|
||||
|
||||
NASM = nasm.o nasmlib.o float.o insnsa.o assemble.o labels.o \
|
||||
parser.o outform.o output/outbin.o output/outaout.o \
|
||||
output/outcoff.o output/outelf32.o output/outelf64.o \
|
||||
output/outobj.o output/outas86.o output/outdbg.o preproc.o listing.o \
|
||||
eval.o output/outrdf2.o output/outieee.o output/outmacho.o
|
||||
|
||||
NDISASM = ndisasm.o disasm.o sync.o nasmlib.o insnsd.o
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
all: $(NASMEXE) $(NDISASMEXE)
|
||||
|
||||
$(NASMEXE): $(NASM)
|
||||
$(CC) -o $(NASMEXE) $(NASM)
|
||||
|
||||
$(NDISASMEXE): $(NDISASM)
|
||||
$(CC) -o $(NDISASMEXE) $(NDISASM)
|
||||
|
||||
# These files contains all the standard macros that are derived from
|
||||
# the version number.
|
||||
version.h: version version.pl
|
||||
$(PERL) version.pl h < version > version.h
|
||||
|
||||
version.mac: version version.pl
|
||||
$(PERL) version.pl mac < 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) macros.pl standard.mac version.mac
|
||||
|
||||
insnsa.c: insns.pl insns.dat
|
||||
$(PERL) insns.pl -a insns.dat
|
||||
|
||||
insnsd.c: insns.pl insns.dat
|
||||
$(PERL) insns.pl -d insns.dat
|
||||
|
||||
insnsi.h: insns.pl insns.dat
|
||||
$(PERL) insns.pl -i insns.dat
|
||||
|
||||
insnsn.c: insns.pl insns.dat
|
||||
$(PERL) insns.pl -n insns.dat
|
||||
|
||||
# These source files are generated from regs.dat by yet another
|
||||
# perl script.
|
||||
regs.c: regs.dat regs.pl
|
||||
$(PERL) regs.pl c regs.dat > regs.c
|
||||
regflags.c: regs.dat regs.pl
|
||||
$(PERL) regs.pl fc regs.dat > regflags.c
|
||||
regdis.c: regs.dat regs.pl
|
||||
$(PERL) regs.pl dc regs.dat > regdis.c
|
||||
regvals.c: regs.dat regs.pl
|
||||
$(PERL) regs.pl vc regs.dat > regvals.c
|
||||
regs.h: regs.dat regs.pl
|
||||
$(PERL) regs.pl h regs.dat > regs.h
|
||||
|
||||
# This target generates all files that require perl.
|
||||
# This allows easier generation of distribution (see dist target).
|
||||
PERLREQ = macros.c insnsa.c insnsd.c insnsi.h insnsn.c \
|
||||
regs.c regs.h regflags.c regdis.c regvals.c \
|
||||
version.h version.mac
|
||||
perlreq: $(PERLREQ)
|
||||
|
||||
install: $(NASMEXE) $(NDISASMEXE)
|
||||
$(INSTALL_PROGRAM) nasm $(bindir)/nasm
|
||||
$(INSTALL_PROGRAM) ndisasm $(bindir)/ndisasm
|
||||
$(INSTALL_DATA) nasm.1 $(mandir)/man1/nasm.1
|
||||
$(INSTALL_DATA) ndisasm.1 $(mandir)/man1/ndisasm.1
|
||||
|
||||
clean:
|
||||
-$(RM) $(NASM) $(NDISASM) $(PERLREQ)
|
||||
|
||||
rdf:
|
||||
$(MAKE) -C rdoff
|
||||
|
||||
rdf_install install_rdf:
|
||||
$(MAKE) -C rdoff install
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".o"
|
||||
# @path-separator: "/"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.o: assemble.c preproc.h insns.h regs.h version.h nasmlib.h nasm.h \
|
||||
regvals.c insnsi.h assemble.h
|
||||
disasm.o: disasm.c insns.h sync.h regdis.c regs.h regs.c version.h nasm.h \
|
||||
insnsn.c names.c insnsi.h disasm.h
|
||||
eval.o: eval.c labels.h eval.h regs.h version.h nasmlib.h nasm.h
|
||||
float.o: float.c regs.h version.h nasm.h
|
||||
insnsa.o: insnsa.c insns.h regs.h version.h nasm.h insnsi.h
|
||||
insnsd.o: insnsd.c insns.h regs.h version.h nasm.h insnsi.h
|
||||
insnsn.o: insnsn.c
|
||||
labels.o: labels.c regs.h version.h nasmlib.h nasm.h
|
||||
listing.o: listing.c regs.h version.h nasmlib.h nasm.h listing.h
|
||||
macros.o: macros.c
|
||||
names.o: names.c regs.c insnsn.c
|
||||
nasm.o: nasm.c labels.h preproc.h insns.h parser.h eval.h regs.h outform.h \
|
||||
version.h nasmlib.h nasm.h assemble.h insnsi.h listing.h
|
||||
nasmlib.o: nasmlib.c insns.h regs.h regs.c version.h nasmlib.h nasm.h \
|
||||
insnsn.c names.c insnsi.h
|
||||
ndisasm.o: ndisasm.c insns.h sync.h regs.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h disasm.h
|
||||
outform.o: outform.c regs.h outform.h version.h nasm.h
|
||||
output/outaout.o: output/outaout.c regs.h outform.h version.h nasmlib.h \
|
||||
nasm.h
|
||||
output/outas86.o: output/outas86.c regs.h outform.h version.h nasmlib.h \
|
||||
nasm.h
|
||||
output/outbin.o: output/outbin.c labels.h eval.h regs.h outform.h version.h \
|
||||
nasmlib.h nasm.h
|
||||
output/outcoff.o: output/outcoff.c regs.h outform.h version.h nasmlib.h \
|
||||
nasm.h
|
||||
output/outdbg.o: output/outdbg.c regs.h outform.h version.h nasmlib.h nasm.h
|
||||
output/outelf32.o: output/outelf32.c regs.h outform.h version.h nasmlib.h nasm.h
|
||||
output/outelf64.o: output/outelf64.c regs.h outform.h version.h nasmlib.h nasm.h
|
||||
output/outieee.o: output/outieee.c regs.h outform.h version.h nasmlib.h \
|
||||
nasm.h
|
||||
output/outmacho.o: output/outmacho.c regs.h outform.h version.h nasmlib.h \
|
||||
nasm.h
|
||||
output/outobj.o: output/outobj.c regs.h outform.h version.h nasmlib.h nasm.h
|
||||
output/outrdf.o: output/outrdf.c regs.h outform.h version.h nasmlib.h nasm.h
|
||||
output/outrdf2.o: output/outrdf2.c rdoff/rdoff.h regs.h outform.h version.h \
|
||||
nasmlib.h nasm.h
|
||||
parser.o: parser.c insns.h parser.h float.h regs.h regflags.c version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
preproc.o: preproc.c macros.c regs.h version.h nasmlib.h nasm.h
|
||||
regdis.o: regdis.c
|
||||
regflags.o: regflags.c
|
||||
regs.o: regs.c
|
||||
regvals.o: regvals.c
|
||||
sync.o: sync.c sync.h
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.o: assemble.c preproc.h insns.h pptok.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.o: crc64.c
|
||||
disasm.o: disasm.c insns.h sync.h regdis.c regs.h config.h regs.c version.h \
|
||||
nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.o: eval.c labels.h eval.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
float.o: float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.o: hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h nasm.h \
|
||||
insnsi.h
|
||||
insnsa.o: insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.o: insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.o: insnsn.c
|
||||
labels.o: labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.o: listing.c regs.h config.h version.h nasmlib.h nasm.h insnsi.h \
|
||||
listing.h
|
||||
macros.o: macros.c
|
||||
names.o: names.c regs.c insnsn.c
|
||||
nasm.o: nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h regs.h \
|
||||
outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h insnsi.h \
|
||||
listing.h
|
||||
nasmlib.o: nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.o: ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.o: outform.c regs.h config.h outform.h version.h nasm.h insnsi.h
|
||||
output/outaout.o: output/outaout.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outas86.o: output/outas86.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outbin.o: output/outbin.c labels.h eval.h regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outcoff.o: output/outcoff.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outdbg.o: output/outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outelf32.o: output/outelf32.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outelf64.o: output/outelf64.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outieee.o: output/outieee.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outmacho.o: output/outmacho.c compiler.h regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h insnsi.h
|
||||
output/outobj.o: output/outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outrdf.o: output/outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outrdf2.o: output/outrdf2.c rdoff/rdoff.h regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.o: parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.o: pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.o: preproc.c preproc.h macros.c pptok.h regs.h config.h version.h \
|
||||
hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.o: regdis.c
|
||||
regflags.o: regflags.c
|
||||
regs.o: regs.c
|
||||
regvals.o: regvals.c
|
||||
stdscan.o: stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.o: sync.c sync.h
|
||||
tokhash.o: tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,152 +0,0 @@
|
||||
# host: dos
|
||||
# target: dos 32bit
|
||||
# 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 licence given in the file "Licence"
|
||||
# distributed in the NASM archive.
|
||||
|
||||
# makefile designed for djgpp 2.xx
|
||||
# djgpp is GNU C compiler ported by mighty DJ Delorie
|
||||
# www.delorie.com and any simtel mirror
|
||||
|
||||
# You may need to adjust these values.
|
||||
|
||||
CC = gcc
|
||||
CFLAGS = -O2 -I.
|
||||
|
||||
# You _shouldn't_ need to adjust anything below this line.
|
||||
|
||||
.c.o:
|
||||
$(CC) -c $(CFLAGS) -o $@ $*.c
|
||||
|
||||
NASM = nasm.o nasmlib.o float.o insnsa.o assemble.o labels.o \
|
||||
parser.o outform.o output/outbin.o output/outaout.o output/outcoff.o \
|
||||
output/outelf32.o output/outelf64.o \
|
||||
output/outobj.o output/outas86.o output/outrdf.o output/outdbg.o preproc.o listing.o \
|
||||
eval.o output/outrdf2.o output/outieee.o
|
||||
|
||||
NDISASM = ndisasm.o disasm.o sync.o nasmlib.o insnsd.o
|
||||
|
||||
all: nasm.exe ndisasm.exe
|
||||
|
||||
nasm.exe: $(NASM)
|
||||
$(CC) -o $@ $(NASM)
|
||||
|
||||
ndisasm.exe: $(NDISASM)
|
||||
$(CC) -o $@ $(NDISASM)
|
||||
|
||||
# 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.
|
||||
|
||||
insnsa.c: insns.dat insns.pl
|
||||
perl insns.pl -a insns.dat
|
||||
insnsd.c: insns.dat insns.pl
|
||||
perl insns.pl -d insns.dat
|
||||
insnsi.h: insns.dat insns.pl
|
||||
perl insns.pl -i insns.dat
|
||||
insnsn.c: insns.dat insns.pl
|
||||
perl insns.pl -n insns.dat
|
||||
|
||||
# These files contains all the standard macros that are derived from
|
||||
# the version number.
|
||||
version.h: version version.pl
|
||||
perl version.pl h < version > version.h
|
||||
|
||||
version.mac: version version.pl
|
||||
perl version.pl mac < 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 macros.pl standard.mac version.mac
|
||||
|
||||
# These source files are generated from regs.dat by yet another
|
||||
# perl script.
|
||||
regs.c: regs.dat regs.pl
|
||||
perl regs.pl c regs.dat > regs.c
|
||||
regflags.c: regs.dat regs.pl
|
||||
perl regs.pl fc regs.dat > regflags.c
|
||||
regdis.c: regs.dat regs.pl
|
||||
perl regs.pl dc regs.dat > regdis.c
|
||||
regvals.c: regs.dat regs.pl
|
||||
perl regs.pl vc regs.dat > regvals.c
|
||||
regs.h: regs.dat regs.pl
|
||||
perl regs.pl h regs.dat > regs.h
|
||||
|
||||
clean:
|
||||
rm -f *.o *.exe output/*.o
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".o"
|
||||
# @path-separator: "/"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.o: assemble.c preproc.h insns.h pptok.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.o: crc64.c
|
||||
disasm.o: disasm.c insns.h sync.h regdis.c regs.h config.h regs.c version.h \
|
||||
nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.o: eval.c labels.h eval.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
float.o: float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.o: hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h nasm.h \
|
||||
insnsi.h
|
||||
insnsa.o: insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.o: insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.o: insnsn.c
|
||||
labels.o: labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.o: listing.c regs.h config.h version.h nasmlib.h nasm.h insnsi.h \
|
||||
listing.h
|
||||
macros.o: macros.c
|
||||
names.o: names.c regs.c insnsn.c
|
||||
nasm.o: nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h regs.h \
|
||||
outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h insnsi.h \
|
||||
listing.h
|
||||
nasmlib.o: nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.o: ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.o: outform.c regs.h config.h outform.h version.h nasm.h insnsi.h
|
||||
output/outaout.o: output/outaout.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outas86.o: output/outas86.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outbin.o: output/outbin.c labels.h eval.h regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outcoff.o: output/outcoff.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outdbg.o: output/outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outelf32.o: output/outelf32.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outelf64.o: output/outelf64.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outieee.o: output/outieee.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outmacho.o: output/outmacho.c compiler.h regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h insnsi.h
|
||||
output/outobj.o: output/outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outrdf.o: output/outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outrdf2.o: output/outrdf2.c rdoff/rdoff.h regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.o: parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.o: pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.o: preproc.c preproc.h macros.c pptok.h regs.h config.h version.h \
|
||||
hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.o: regdis.c
|
||||
regflags.o: regflags.c
|
||||
regs.o: regs.c
|
||||
regvals.o: regvals.c
|
||||
stdscan.o: stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.o: sync.c sync.h
|
||||
tokhash.o: tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,159 +0,0 @@
|
||||
# host: dos
|
||||
# target: dos 16bit and 32bit
|
||||
# Makefile for the Netwide Assembler
|
||||
#
|
||||
# This is a modification (by John Fine) of makefile.dj
|
||||
#
|
||||
# It uses the syntax of "Opus Make", which is the make program I prefer.
|
||||
#
|
||||
# It builds two targets:
|
||||
#
|
||||
# nasm.exe 32-bit built with DJGPP
|
||||
# ndisasm.exe NASM disassembler (DJGPP version)
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .exe .ol .o .obj .c .dat .pl
|
||||
|
||||
# The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
||||
# Julian Hall. All rights reserved. The software is
|
||||
# redistributable under the licence given in the file "Licence"
|
||||
# distributed in the NASM archive.
|
||||
|
||||
# makefile designed for djgpp 2.xx
|
||||
# djgpp is GNU C compiler ported by mighty DJ Delorie
|
||||
# www.delorie.com and any simtel mirror
|
||||
|
||||
CC = gcc
|
||||
CFLAGS = -O3
|
||||
|
||||
.c.o:
|
||||
# redir -eo $(CC) -g -c -O2 -finline-functions -Wall -ansi -pedantic $*.c >$*.err
|
||||
$(CC) -g -c -O2 -finline-functions -Wall -ansi -pedantic $*.c
|
||||
|
||||
NASM = nasm.o nasmlib.o float.o insnsa.o assemble.o labels.o \
|
||||
parser.o outform.o output/outbin.o output/outaout.o output/outcoff.o \
|
||||
output/outelf32.o output/outelf64.o \
|
||||
output/outobj.o output/outas86.o output/outrdf.o output/outrdf2.o output/outieee.o output/outdbg.o preproc.o listing.o \
|
||||
eval.o
|
||||
|
||||
NDISASM = ndisasm.o disasm.o sync.o nasmlib.o insnsd.o
|
||||
|
||||
nasm.exe: $(NASM)
|
||||
$(CC) @<<
|
||||
-s -o $@ $(NASM)
|
||||
<<
|
||||
djp nasm.exe
|
||||
|
||||
ndisasm.exe: $(NDISASM)
|
||||
$(CC) @<<
|
||||
-s -o $@ $(NDISASM)
|
||||
<<
|
||||
djp ndisasm.exe
|
||||
|
||||
# These four 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.
|
||||
|
||||
insnsa.c insnsd.c insnsi.h insnsn.c: insns.dat insns.pl
|
||||
perl insns.pl 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: standard.mac macros.pl version.mac
|
||||
perl macros.pl standard.mac version.mac
|
||||
|
||||
# These source files are generated from regs.dat by yet another
|
||||
# perl script.
|
||||
regs.c: regs.dat regs.pl
|
||||
perl regs.pl c regs.dat > regs.c
|
||||
regflags.c: regs.dat regs.pl
|
||||
perl regs.pl fc regs.dat > regflags.c
|
||||
regdis.c: regs.dat regs.pl
|
||||
perl regs.pl dc regs.dat > regdis.c
|
||||
regvals.c: regs.dat regs.pl
|
||||
perl regs.pl vc regs.dat > regvals.c
|
||||
regs.h: regs.dat regs.pl
|
||||
perl regs.pl h regs.dat > regs.h
|
||||
|
||||
clean:
|
||||
rm -f *.o nasm ndisasm
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".o"
|
||||
# @path-separator: "/"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.o: assemble.c preproc.h insns.h pptok.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.o: crc64.c
|
||||
disasm.o: disasm.c insns.h sync.h regdis.c regs.h config.h regs.c version.h \
|
||||
nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.o: eval.c labels.h eval.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
float.o: float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.o: hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h nasm.h \
|
||||
insnsi.h
|
||||
insnsa.o: insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.o: insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.o: insnsn.c
|
||||
labels.o: labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.o: listing.c regs.h config.h version.h nasmlib.h nasm.h insnsi.h \
|
||||
listing.h
|
||||
macros.o: macros.c
|
||||
names.o: names.c regs.c insnsn.c
|
||||
nasm.o: nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h regs.h \
|
||||
outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h insnsi.h \
|
||||
listing.h
|
||||
nasmlib.o: nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.o: ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.o: outform.c regs.h config.h outform.h version.h nasm.h insnsi.h
|
||||
output/outaout.o: output/outaout.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outas86.o: output/outas86.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outbin.o: output/outbin.c labels.h eval.h regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outcoff.o: output/outcoff.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outdbg.o: output/outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outelf32.o: output/outelf32.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outelf64.o: output/outelf64.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outieee.o: output/outieee.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outmacho.o: output/outmacho.c compiler.h regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h insnsi.h
|
||||
output/outobj.o: output/outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outrdf.o: output/outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outrdf2.o: output/outrdf2.c rdoff/rdoff.h regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.o: parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.o: pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.o: preproc.c preproc.h macros.c pptok.h regs.h config.h version.h \
|
||||
hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.o: regdis.c
|
||||
regflags.o: regflags.c
|
||||
regs.o: regs.c
|
||||
regvals.o: regvals.c
|
||||
stdscan.o: stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.o: sync.c sync.h
|
||||
tokhash.o: tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,114 +0,0 @@
|
||||
# The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
||||
# Julian Hall. All rights reserved. The software is
|
||||
# redistributable under the licence given in the file "Licence"
|
||||
# distributed in the NASM archive.
|
||||
#
|
||||
# This Makefile is designed to build NASM using David Lindauer's
|
||||
# cc386
|
||||
|
||||
CC = cc386 /C+N
|
||||
LINK = valx -case -use32 -map
|
||||
LINKFLAGS =
|
||||
LIBRARIES =
|
||||
OBJ = obj
|
||||
|
||||
.c.obj:
|
||||
$(CC) $&
|
||||
&nasm -fobj $&.ASM
|
||||
|
||||
NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \
|
||||
insnsd.$(OBJ)
|
||||
|
||||
NASMOBJS = nasm.$(OBJ) nasmlib.$(OBJ) eval.$(OBJ) float.$(OBJ) insnsa.$(OBJ) \
|
||||
assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ) \
|
||||
output/outbin.$(OBJ) output/outaout.$(OBJ) output/outcoff.$(OBJ) \
|
||||
output/outelf32.$(OBJ) output/outelf64.$(OBJ) \
|
||||
output/outobj.$(OBJ) output/outas86.$(OBJ) output/outrdf.$(OBJ) output/outrdf2.$(OBJ) output/outdbg.$(OBJ) \
|
||||
preproc.$(OBJ) listing.$(OBJ) output/outieee.$(OBJ)
|
||||
|
||||
all : nasm.exe ndisasm.exe
|
||||
|
||||
# We have to have a horrible kludge here to get round the 128 character
|
||||
# limit, as usual...
|
||||
LINKOBJS = a*.obj e*.obj f*.obj insnsa.obj l*.obj na*.obj o*.obj p*.obj z*.obj
|
||||
nasm.exe: $(NASMOBJS)
|
||||
$(LINK) \cc386\lib\c0dos $(LINKOBJS:.obj=),nasm,nasm,\cc386\lib\cldos
|
||||
|
||||
ndisasm.exe: $(NDISASMOBJS)
|
||||
$(LINK) \cc386\lib\c0dos.obj $(NDISASMOBJS:.obj=),ndisasm,ndisasm,\cc386\lib\cldos
|
||||
|
||||
clean :
|
||||
del *.asm
|
||||
del *.obj
|
||||
del *.map
|
||||
del *.exe
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".$(OBJ)"
|
||||
# @path-separator: "/"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.$(OBJ): assemble.c preproc.h insns.h pptok.h regs.h regflags.c \
|
||||
config.h version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.$(OBJ): crc64.c
|
||||
disasm.$(OBJ): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
|
||||
version.h nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.$(OBJ): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h
|
||||
float.$(OBJ): float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.$(OBJ): hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h \
|
||||
nasm.h insnsi.h
|
||||
insnsa.$(OBJ): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.$(OBJ): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.$(OBJ): insnsn.c
|
||||
labels.$(OBJ): labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.$(OBJ): listing.c regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h listing.h
|
||||
macros.$(OBJ): macros.c
|
||||
names.$(OBJ): names.c regs.c insnsn.c
|
||||
nasm.$(OBJ): nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h \
|
||||
regs.h outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h \
|
||||
insnsi.h listing.h
|
||||
nasmlib.$(OBJ): nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.$(OBJ): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.$(OBJ): outform.c regs.h config.h outform.h version.h nasm.h \
|
||||
insnsi.h
|
||||
output/outaout.$(OBJ): output/outaout.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outas86.$(OBJ): output/outas86.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outbin.$(OBJ): output/outbin.c labels.h eval.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outcoff.$(OBJ): output/outcoff.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outdbg.$(OBJ): output/outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outelf32.$(OBJ): output/outelf32.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outelf64.$(OBJ): output/outelf64.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outieee.$(OBJ): output/outieee.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outmacho.$(OBJ): output/outmacho.c compiler.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
output/outobj.$(OBJ): output/outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outrdf.$(OBJ): output/outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outrdf2.$(OBJ): output/outrdf2.c rdoff/rdoff.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.$(OBJ): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.$(OBJ): pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.$(OBJ): preproc.c preproc.h macros.c pptok.h regs.h config.h \
|
||||
version.h hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.$(OBJ): regdis.c
|
||||
regflags.$(OBJ): regflags.c
|
||||
regs.$(OBJ): regs.c
|
||||
regvals.$(OBJ): regvals.c
|
||||
stdscan.$(OBJ): stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.$(OBJ): sync.c sync.h
|
||||
tokhash.$(OBJ): tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,127 +0,0 @@
|
||||
# Makefile for the Netwide Assembler under 16-bit DOS
|
||||
#
|
||||
# The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
||||
# Julian Hall. All rights reserved. The software is
|
||||
# redistributable under the licence given in the file "Licence"
|
||||
# distributed in the NASM archive.
|
||||
#
|
||||
# This Makefile is designed to build NASM using a 16-bit DOS C
|
||||
# compiler such as Microsoft C, provided you have a compatible MAKE.
|
||||
# It's been tested with Microsoft C 5.x plus Borland Make. (Yes, I
|
||||
# know it's silly, but...)
|
||||
|
||||
CC = cl /c /O /AL /Gt
|
||||
QCL = qcl /c /AL /Gt
|
||||
LINK = cl
|
||||
LINKFLAGS =
|
||||
LIBRARIES =
|
||||
EXE = .exe#
|
||||
OBJ = obj#
|
||||
|
||||
.c.$(OBJ):
|
||||
$(CC) $*.c
|
||||
|
||||
NASMOBJS = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) insnsa.$(OBJ) \
|
||||
assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ) \
|
||||
output/outbin.$(OBJ) output/outaout.$(OBJ) output/outcoff.$(OBJ) \
|
||||
output/outelf32.$(OBJ) output/outelf64.$(OBJ) \
|
||||
output/outobj.$(OBJ) output/outas86.$(OBJ) output/outrdf.$(OBJ) output/outrdf2.$(OBJ) \
|
||||
output/outieee.$(OBJ) output/outdbg.$(OBJ) preproc.$(OBJ) listing.$(OBJ) \
|
||||
eval.$(OBJ)
|
||||
|
||||
NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \
|
||||
insnsd.$(OBJ)
|
||||
|
||||
all : nasm$(EXE) ndisasm$(EXE)
|
||||
|
||||
# We have to have a horrible kludge here to get round the 128 character
|
||||
# limit, as usual...
|
||||
LINKOBJS = a*.obj e*.obj f*.obj insnsa.obj l*.obj na*.obj o*.obj p*.obj
|
||||
nasm$(EXE): $(NASMOBJS)
|
||||
cl /Fenasm.exe /F 4000 $(LINKOBJS)
|
||||
|
||||
ndisasm$(EXE): $(NDISASMOBJS)
|
||||
cl /Fendisasm.exe $(NDISASMOBJS)
|
||||
|
||||
# Another grotty hack: QC is less likely to run out of memory than
|
||||
# CL proper; and we don't need any optimisation in these modules
|
||||
# since they're just data.
|
||||
insnsa.$(OBJ): insnsa.c nasm.h version.h insnsi.h insns.h
|
||||
$(QCL) insnsa.c
|
||||
insnsd.$(OBJ): insnsd.c nasm.h version.h insnsi.h insns.h
|
||||
$(QCL) insnsd.c
|
||||
|
||||
clean :
|
||||
del *.obj
|
||||
del nasm$(EXE)
|
||||
del ndisasm$(EXE)
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".$(OBJ)"
|
||||
# @path-separator: "/"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.$(OBJ): assemble.c preproc.h insns.h pptok.h regs.h regflags.c \
|
||||
config.h version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.$(OBJ): crc64.c
|
||||
disasm.$(OBJ): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
|
||||
version.h nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.$(OBJ): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h
|
||||
float.$(OBJ): float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.$(OBJ): hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h \
|
||||
nasm.h insnsi.h
|
||||
insnsa.$(OBJ): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.$(OBJ): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.$(OBJ): insnsn.c
|
||||
labels.$(OBJ): labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.$(OBJ): listing.c regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h listing.h
|
||||
macros.$(OBJ): macros.c
|
||||
names.$(OBJ): names.c regs.c insnsn.c
|
||||
nasm.$(OBJ): nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h \
|
||||
regs.h outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h \
|
||||
insnsi.h listing.h
|
||||
nasmlib.$(OBJ): nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.$(OBJ): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.$(OBJ): outform.c regs.h config.h outform.h version.h nasm.h \
|
||||
insnsi.h
|
||||
output/outaout.$(OBJ): output/outaout.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outas86.$(OBJ): output/outas86.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outbin.$(OBJ): output/outbin.c labels.h eval.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outcoff.$(OBJ): output/outcoff.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outdbg.$(OBJ): output/outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outelf32.$(OBJ): output/outelf32.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outelf64.$(OBJ): output/outelf64.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outieee.$(OBJ): output/outieee.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outmacho.$(OBJ): output/outmacho.c compiler.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
output/outobj.$(OBJ): output/outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outrdf.$(OBJ): output/outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outrdf2.$(OBJ): output/outrdf2.c rdoff/rdoff.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.$(OBJ): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.$(OBJ): pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.$(OBJ): preproc.c preproc.h macros.c pptok.h regs.h config.h \
|
||||
version.h hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.$(OBJ): regdis.c
|
||||
regflags.$(OBJ): regflags.c
|
||||
regs.$(OBJ): regs.c
|
||||
regvals.$(OBJ): regvals.c
|
||||
stdscan.$(OBJ): stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.$(OBJ): sync.c sync.h
|
||||
tokhash.$(OBJ): tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,208 +0,0 @@
|
||||
# Generated automatically from Makefile.in by configure.
|
||||
#
|
||||
# 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 licence given in the file "Licence"
|
||||
# distributed in the NASM archive.
|
||||
|
||||
srcdir = .
|
||||
prefix = /usr/local
|
||||
exec_prefix = ${prefix}
|
||||
bindir = ${exec_prefix}/bin
|
||||
mandir = ${prefix}/man
|
||||
|
||||
CC = gcc
|
||||
CFLAGS = -s -Zomf -O2 -fomit-frame-pointer -Wall -pedantic \
|
||||
-I$(srcdir) -I. -DTASM_COMPAT
|
||||
LDFLAGS = -s -Zomf -Zexe -Zcrtdll
|
||||
LIBS = -lgcc
|
||||
|
||||
INSTALL = ./install-sh -c
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
|
||||
NROFF = echo
|
||||
PERL = perl
|
||||
|
||||
.SUFFIXES: .c .i .s .o .1 .man
|
||||
|
||||
.PHONY: all doc rdf install clean distclean cleaner spotless install_rdf
|
||||
.PHONY: install_doc everything install_everything
|
||||
|
||||
.c.o:
|
||||
$(CC) -c $(CFLAGS) -o $@ $<
|
||||
|
||||
.c.s:
|
||||
$(CC) -S $(CFLAGS) -o $@ $<
|
||||
|
||||
.c.i:
|
||||
$(CC) -E $(CFLAGS) -o $@ $<
|
||||
|
||||
.1.man:
|
||||
$(NROFF) -man $< > $@
|
||||
|
||||
NASM = nasm.o nasmlib.o float.o insnsa.o assemble.o labels.o \
|
||||
parser.o outform.o output/outbin.o output/outaout.o output/outcoff.o \
|
||||
output/outelf32.o output/outelf64.o \
|
||||
output/outobj.o output/outas86.o output/outrdf.o output/outrdf2.o output/outdbg.o output/outieee.o \
|
||||
preproc.o listing.o eval.o
|
||||
|
||||
NDISASM = ndisasm.o disasm.o sync.o nasmlib.o insnsd.o
|
||||
|
||||
all: nasm ndisasm nasm.man ndisasm.man
|
||||
$(MAKE) -C rdoff -f Makefile.emx all
|
||||
|
||||
nasm: $(NASM)
|
||||
$(CC) $(LDFLAGS) -o nasm $(NASM) $(LIBS)
|
||||
|
||||
ndisasm: $(NDISASM)
|
||||
$(CC) $(LDFLAGS) -o ndisasm $(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.
|
||||
|
||||
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: standard.mac macros.pl 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
|
||||
|
||||
install: nasm ndisasm
|
||||
$(INSTALL_PROGRAM) nasm $(INSTALLROOT)$(bindir)/nasm
|
||||
$(INSTALL_PROGRAM) ndisasm $(INSTALLROOT)$(bindir)/ndisasm
|
||||
$(INSTALL_DATA) $(srcdir)/nasm.1 $(INSTALLROOT)$(mandir)/man1/nasm.1
|
||||
$(INSTALL_DATA) $(srcdir)/ndisasm.1 $(INSTALLROOT)$(mandir)/man1/ndisasm.1
|
||||
|
||||
clean:
|
||||
rm -f *.o *.s *.i nasm ndisasm
|
||||
cd rdoff && $(MAKE) clean
|
||||
|
||||
distclean: clean
|
||||
rm -f config.* Makefile *~ *.bak *.lst *.bin
|
||||
cd rdoff && $(MAKE) distclean
|
||||
|
||||
cleaner: clean
|
||||
rm -f insnsa.c insnsd.c insnsi.h insnsn.c macros.c *.man
|
||||
cd doc && $(MAKE) clean
|
||||
|
||||
spotless: distclean cleaner
|
||||
|
||||
rdf:
|
||||
cd rdoff && $(MAKE)
|
||||
|
||||
rdf_install install_rdf:
|
||||
cd rdoff && $(MAKE) install
|
||||
|
||||
doc:
|
||||
cd doc && $(MAKE) all
|
||||
|
||||
doc_install install_doc:
|
||||
cd doc && $(MAKE) install
|
||||
|
||||
everything: all doc rdf
|
||||
|
||||
install_everything: everything install install_doc install_rdf
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".o"
|
||||
# @path-separator: "/"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.o: assemble.c preproc.h insns.h pptok.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.o: crc64.c
|
||||
disasm.o: disasm.c insns.h sync.h regdis.c regs.h config.h regs.c version.h \
|
||||
nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.o: eval.c labels.h eval.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
float.o: float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.o: hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h nasm.h \
|
||||
insnsi.h
|
||||
insnsa.o: insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.o: insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.o: insnsn.c
|
||||
labels.o: labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.o: listing.c regs.h config.h version.h nasmlib.h nasm.h insnsi.h \
|
||||
listing.h
|
||||
macros.o: macros.c
|
||||
names.o: names.c regs.c insnsn.c
|
||||
nasm.o: nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h regs.h \
|
||||
outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h insnsi.h \
|
||||
listing.h
|
||||
nasmlib.o: nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.o: ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.o: outform.c regs.h config.h outform.h version.h nasm.h insnsi.h
|
||||
output/outaout.o: output/outaout.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outas86.o: output/outas86.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outbin.o: output/outbin.c labels.h eval.h regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outcoff.o: output/outcoff.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outdbg.o: output/outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outelf32.o: output/outelf32.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outelf64.o: output/outelf64.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outieee.o: output/outieee.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outmacho.o: output/outmacho.c compiler.h regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h insnsi.h
|
||||
output/outobj.o: output/outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outrdf.o: output/outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outrdf2.o: output/outrdf2.c rdoff/rdoff.h regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.o: parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.o: pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.o: preproc.c preproc.h macros.c pptok.h regs.h config.h version.h \
|
||||
hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.o: regdis.c
|
||||
regflags.o: regflags.c
|
||||
regs.o: regs.c
|
||||
regvals.o: regvals.c
|
||||
stdscan.o: stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.o: sync.c sync.h
|
||||
tokhash.o: tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,180 +0,0 @@
|
||||
# host: windows nt/95
|
||||
# target: windows nt/95
|
||||
# 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 licence given in the file "Licence"
|
||||
# distributed in the NASM archive.
|
||||
|
||||
# makefile designed for lcc-win32
|
||||
# lcc-win32 is lcc (c compiler coded by guys from princeton uni)
|
||||
# ported to win32 by jacob navia
|
||||
# available at http://www.remcomp.com/lcc-win32/
|
||||
|
||||
CFLAGS = -c -O -g2
|
||||
CC = lcc.exe $(CFLAGS)
|
||||
LFLAGS = -subsystem console -s
|
||||
LD = lcclnk.exe $(LFLAGS)
|
||||
OBJ = obj
|
||||
|
||||
.c.${OBJ}:
|
||||
$(CC) -o $@ $*.c
|
||||
|
||||
NASM = nasm.${OBJ} nasmlib.${OBJ} float.${OBJ} insnsa.${OBJ} assemble.${OBJ} labels.${OBJ} \
|
||||
parser.${OBJ} outform.${OBJ} output/outbin.${OBJ} output/outaout.${OBJ} output/outcoff.${OBJ} \
|
||||
output/outelf32.${OBJ} output/outelf64.${OBJ} \
|
||||
output/outobj.${OBJ} output/outas86.${OBJ} output/outrdf.${OBJ} output/outdbg.${OBJ} output/outrdf2.${OBJ} \
|
||||
output/outieee.${OBJ} preproc.${OBJ} listing.${OBJ} eval.${OBJ}
|
||||
|
||||
NDISASM = ndisasm.${OBJ} disasm.${OBJ} sync.${OBJ} nasmlib.${OBJ} insnsd.${OBJ}
|
||||
|
||||
all: nasm ndisasm
|
||||
|
||||
# linker response files
|
||||
# that may take long, too much spawning command.com :)
|
||||
NASM.LNK: makefile.lcc
|
||||
echo nasm.$(OBJ) > NASM.LNK
|
||||
echo nasmlib.$(OBJ) >> NASM.LNK
|
||||
echo eval.$(OBJ) >> NASM.LNK
|
||||
echo float.$(OBJ) >> NASM.LNK
|
||||
echo insnsa.$(OBJ) >> NASM.LNK
|
||||
echo assemble.$(OBJ) >> NASM.LNK
|
||||
echo labels.$(OBJ) >> NASM.LNK
|
||||
echo listing.$(OBJ) >> NASM.LNK
|
||||
echo parser.$(OBJ) >> NASM.LNK
|
||||
echo preproc.$(OBJ) >> NASM.LNK
|
||||
echo outform.$(OBJ) >> NASM.LNK
|
||||
echo output/outbin.$(OBJ) >> NASM.LNK
|
||||
echo output/outaout.$(OBJ) >> NASM.LNK
|
||||
echo output/outcoff.$(OBJ) >> NASM.LNK
|
||||
echo output/outelf32.$(OBJ) >> NASM.LNK
|
||||
echo output/outelf64.$(OBJ) >> NASM.LNK
|
||||
echo output/outobj.$(OBJ) >> NASM.LNK
|
||||
echo output/outas86.$(OBJ) >> NASM.LNK
|
||||
echo output/outrdf.$(OBJ) >> NASM.LNK
|
||||
echo output/outrdf2.$(OBJ) >> NASM.LNK
|
||||
echo output/outieee.$(OBJ) >> NASM.LNK
|
||||
echo output/outdbg.$(OBJ) >> NASM.LNK
|
||||
|
||||
NDISASM.LNK: makefile.lcc
|
||||
echo ndisasm.$(OBJ) > NDISASM.LNK
|
||||
echo disasm.$(OBJ) >> NDISASM.LNK
|
||||
echo sync.$(OBJ) >> NDISASM.LNK
|
||||
echo nasmlib.$(OBJ) >> NDISASM.LNK
|
||||
echo insnsd.$(OBJ) >> NDISASM.LNK
|
||||
|
||||
nasm: $(NASM) nasm.lnk
|
||||
$(LD) -o nasm.exe @nasm.lnk
|
||||
|
||||
ndisasm: $(NDISASM) ndisasm.lnk
|
||||
$(LD) -o ndisasm.exe @ndisasm.lnk
|
||||
|
||||
# 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.
|
||||
|
||||
insnsa.c insnsd.c insnsi.h insnsn.c: insns.dat insns.pl
|
||||
perl insns.pl insns.dat
|
||||
|
||||
# These files contains all the standard macros that are derived from
|
||||
# the version number.
|
||||
version.h: version version.pl
|
||||
perl version.pl h < version > version.h
|
||||
|
||||
version.mac: version version.pl
|
||||
perl version.pl mac < 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: standard.mac macros.pl version.mac
|
||||
perl macros.pl standard.mac version.mac
|
||||
|
||||
# These source files are generated from regs.dat by yet another
|
||||
# perl script.
|
||||
regs.c: regs.dat regs.pl
|
||||
perl regs.pl c regs.dat > regs.c
|
||||
regflags.c: regs.dat regs.pl
|
||||
perl regs.pl fc regs.dat > regflags.c
|
||||
regdis.c: regs.dat regs.pl
|
||||
perl regs.pl dc regs.dat > regdis.c
|
||||
regvals.c: regs.dat regs.pl
|
||||
perl regs.pl vc regs.dat > regvals.c
|
||||
regs.h: regs.dat regs.pl
|
||||
perl regs.pl h regs.dat > regs.h
|
||||
|
||||
clean:
|
||||
rm -f *.${OBJ} nasm.exe ndisasm.exe
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".${OBJ}"
|
||||
# @path-separator: "/"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.${OBJ}: assemble.c preproc.h insns.h pptok.h regs.h regflags.c \
|
||||
config.h version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.${OBJ}: crc64.c
|
||||
disasm.${OBJ}: disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
|
||||
version.h nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.${OBJ}: eval.c labels.h eval.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h
|
||||
float.${OBJ}: float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.${OBJ}: hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h \
|
||||
nasm.h insnsi.h
|
||||
insnsa.${OBJ}: insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.${OBJ}: insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.${OBJ}: insnsn.c
|
||||
labels.${OBJ}: labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.${OBJ}: listing.c regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h listing.h
|
||||
macros.${OBJ}: macros.c
|
||||
names.${OBJ}: names.c regs.c insnsn.c
|
||||
nasm.${OBJ}: nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h \
|
||||
regs.h outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h \
|
||||
insnsi.h listing.h
|
||||
nasmlib.${OBJ}: nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.${OBJ}: ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.${OBJ}: outform.c regs.h config.h outform.h version.h nasm.h \
|
||||
insnsi.h
|
||||
output/outaout.${OBJ}: output/outaout.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outas86.${OBJ}: output/outas86.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outbin.${OBJ}: output/outbin.c labels.h eval.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outcoff.${OBJ}: output/outcoff.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outdbg.${OBJ}: output/outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outelf32.${OBJ}: output/outelf32.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outelf64.${OBJ}: output/outelf64.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outieee.${OBJ}: output/outieee.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outmacho.${OBJ}: output/outmacho.c compiler.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
output/outobj.${OBJ}: output/outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outrdf.${OBJ}: output/outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outrdf2.${OBJ}: output/outrdf2.c rdoff/rdoff.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.${OBJ}: parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.${OBJ}: pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.${OBJ}: preproc.c preproc.h macros.c pptok.h regs.h config.h \
|
||||
version.h hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.${OBJ}: regdis.c
|
||||
regflags.${OBJ}: regflags.c
|
||||
regs.${OBJ}: regs.c
|
||||
regvals.${OBJ}: regvals.c
|
||||
stdscan.${OBJ}: stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.${OBJ}: sync.c sync.h
|
||||
tokhash.${OBJ}: tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,223 +0,0 @@
|
||||
# Makefile for the Netwide Assembler under 16-bit DOS
|
||||
#
|
||||
# The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
||||
# Julian Hall. All rights reserved. The software is
|
||||
# redistributable under the licence given in the file "Licence"
|
||||
# distributed in the NASM archive.
|
||||
#
|
||||
# This Makefile is designed to build NASM using a 16-bit DOS C
|
||||
# compiler such as Microsoft C, provided you have a compatible MAKE.
|
||||
# It's been tested with Microsoft C 5.x plus Borland Make. (Yes, I
|
||||
# know it's silly, but...)
|
||||
|
||||
# update: MSC 5.1 will not compile 'nasmlib.c' (arg lists don't match)
|
||||
# MSC 6.00A will not compile 'insnsa.c' (qcl is required)
|
||||
# MSC 7.00 will compile all
|
||||
#
|
||||
# GNU software compiled by DJGPP is also required:
|
||||
#
|
||||
# grep 2.4
|
||||
# perl 5.6.1
|
||||
#
|
||||
# Source and DOS/Windows binaries may be downloaded from:
|
||||
#
|
||||
# ftp://ftp.simtel.net/pub/simtelnet/gnu/djgpp/v2gnu/
|
||||
#
|
||||
# Compilation has been tested under Windows 98 & Windows 2000
|
||||
# MSC 7.00 & DJGPP applications require a DPMI interface, which is
|
||||
# a part of MSC 7.00 under DOS. It is also a part of Windows.
|
||||
#
|
||||
#
|
||||
# For a 16-bit compiler, we don't need all the formats
|
||||
#
|
||||
CONFIG = -DOF_ONLY -DOF_BIN -DOF_OBJ -DOF_WIN32 -DOF_AS86
|
||||
|
||||
#CC = cl /c /O /AL /Gt
|
||||
# Compile for a 286, ain't nobody using an 8086 anymore
|
||||
CC = cl /c /Oz /AL /Gt256 /G2 /I.. # MSC 7.00
|
||||
|
||||
#QCL = qcl /c /AL /Gt
|
||||
QCL = $(CC) # MSC 7.00
|
||||
|
||||
LINK = link
|
||||
LINKFLAGS = /F4000 /Fm
|
||||
LIBRARIES =
|
||||
EXE = .exe#
|
||||
OBJ = obj#
|
||||
|
||||
.c.$(OBJ):
|
||||
$(CC) $(CONFIG) /Fo$@ $*.c
|
||||
|
||||
NASMOBJS1 = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) insnsa.$(OBJ) \
|
||||
assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ)
|
||||
NASMOBJS2 = output\outbin.$(OBJ) output\outaout.$(OBJ) output\outcoff.$(OBJ)
|
||||
NASMOBJS3 = output\outelf32.$(OBJ) output\outelf64.$(OBJ) output\outobj.$(OBJ) output\outas86.$(OBJ)
|
||||
NASMOBJS4 = output\outrdf.$(OBJ) output\outrdf2.$(OBJ) output\outieee.$(OBJ)
|
||||
NASMOBJS5 = output\outdbg.$(OBJ) preproc.$(OBJ) listing.$(OBJ) eval.$(OBJ)
|
||||
|
||||
NASMOBJS = $(NASMOBJS1) $(NASMOBJS2) $(NASMOBJS3) $(NASMOBJS4) $(NASMOBJS5)
|
||||
|
||||
NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \
|
||||
insnsd.$(OBJ)
|
||||
|
||||
all : nasm$(EXE) ndisasm$(EXE)
|
||||
|
||||
# We have to have a horrible kludge here to get round the 128 character
|
||||
# limit, as usual...
|
||||
LINKOBJS = a*.obj e*.obj f*.obj insnsa.obj l*.obj na*.obj o*.obj p*.obj
|
||||
nasm$(EXE): $(NASMOBJS)
|
||||
echo $(NASMOBJS1) + >foo
|
||||
echo $(NASMOBJS2) + >>foo
|
||||
echo $(NASMOBJS3) + >>foo
|
||||
echo $(NASMOBJS4) + >>foo
|
||||
echo $(NASMOBJS5) >> foo
|
||||
$(LINK) /st:4096 @foo,nasm;
|
||||
|
||||
ndisasm$(EXE): $(NDISASMOBJS)
|
||||
$(LINK) $(NDISASMOBJS), ndisasm;
|
||||
|
||||
output\version.h: version.h
|
||||
copy version.h output
|
||||
|
||||
output\nasm.h: nasm.h
|
||||
copy nasm.h output
|
||||
|
||||
output\insnsi.h: insnsi.h
|
||||
copy insnsi.h output
|
||||
|
||||
output\nasmlib.h: nasmlib.h
|
||||
copy nasmlib.h output
|
||||
|
||||
output\outform.h: outform.h
|
||||
copy outform.h output
|
||||
|
||||
# These files contains all the standard macros that are derived from
|
||||
# the version number.
|
||||
version.h: version version.pl
|
||||
perl version.pl h < version > version.h
|
||||
|
||||
version.mac: version version.pl
|
||||
perl version.pl mac < 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 macros.pl standard.mac version.mac
|
||||
|
||||
insnsa.c insnsd.c insnsi.h insnsn.c: insns16.dat insns.pl
|
||||
perl insns.pl insns16.dat
|
||||
|
||||
insns16.dat: insns.dat
|
||||
grep -v WILLAMETTE insns.dat | grep -v KATMAI | grep -v SSE | \
|
||||
grep -v MMX | grep -v 3DNOW | grep -v UNDOC >insns16.dat
|
||||
|
||||
# These source files are generated from regs.dat by yet another
|
||||
# perl script.
|
||||
regs.c: regs.dat regs.pl
|
||||
perl regs.pl c regs.dat > regs.c
|
||||
regflags.c: regs.dat regs.pl
|
||||
perl regs.pl fc regs.dat > regflags.c
|
||||
regdis.c: regs.dat regs.pl
|
||||
perl regs.pl dc regs.dat > regdis.c
|
||||
regvals.c: regs.dat regs.pl
|
||||
perl regs.pl vc regs.dat > regvals.c
|
||||
regs.h: regs.dat regs.pl
|
||||
perl regs.pl h regs.dat > regs.h
|
||||
|
||||
# Another grotty hack: QC is less likely to run out of memory than
|
||||
# CL proper; and we don't need any optimisation in these modules
|
||||
# since they're just data.
|
||||
insnsa.$(OBJ): insnsa.c nasm.h version.h insnsi.h insns.h
|
||||
$(QCL) insnsa.c
|
||||
|
||||
insnsd.$(OBJ): insnsd.c nasm.h version.h insnsi.h insns.h
|
||||
$(QCL) insnsd.c
|
||||
|
||||
tidy:
|
||||
del output\*.h
|
||||
del *.$(OBJ)
|
||||
del output\*.$(OBJ)
|
||||
|
||||
clean : tidy
|
||||
del nasm$(EXE)
|
||||
del ndisasm$(EXE)
|
||||
|
||||
spotless: clean
|
||||
del insns16.dat
|
||||
del insnsa.c
|
||||
del insnsd.c
|
||||
del insnsi.h
|
||||
del insnsn.c
|
||||
del version.h
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".$(OBJ)"
|
||||
# @path-separator: "\"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.$(OBJ): assemble.c preproc.h insns.h pptok.h regs.h regflags.c \
|
||||
config.h version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.$(OBJ): crc64.c
|
||||
disasm.$(OBJ): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
|
||||
version.h nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.$(OBJ): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h
|
||||
float.$(OBJ): float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.$(OBJ): hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h \
|
||||
nasm.h insnsi.h
|
||||
insnsa.$(OBJ): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.$(OBJ): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.$(OBJ): insnsn.c
|
||||
labels.$(OBJ): labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.$(OBJ): listing.c regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h listing.h
|
||||
macros.$(OBJ): macros.c
|
||||
names.$(OBJ): names.c regs.c insnsn.c
|
||||
nasm.$(OBJ): nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h \
|
||||
regs.h outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h \
|
||||
insnsi.h listing.h
|
||||
nasmlib.$(OBJ): nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.$(OBJ): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.$(OBJ): outform.c regs.h config.h outform.h version.h nasm.h \
|
||||
insnsi.h
|
||||
output\outaout.$(OBJ): output\outaout.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\outas86.$(OBJ): output\outas86.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output\outbin.$(OBJ): output\outbin.c labels.h eval.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\outcoff.$(OBJ): output\outcoff.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output\outdbg.$(OBJ): output\outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output\outelf32.$(OBJ): output\outelf32.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\outelf64.$(OBJ): output\outelf64.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\outieee.$(OBJ): output\outieee.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output\outmacho.$(OBJ): output\outmacho.c compiler.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
output\outobj.$(OBJ): output\outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\outrdf.$(OBJ): output\outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output\outrdf2.$(OBJ): output\outrdf2.c rdoff\rdoff.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.$(OBJ): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.$(OBJ): pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.$(OBJ): preproc.c preproc.h macros.c pptok.h regs.h config.h \
|
||||
version.h hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.$(OBJ): regdis.c
|
||||
regflags.$(OBJ): regflags.c
|
||||
regs.$(OBJ): regs.c
|
||||
regvals.$(OBJ): regvals.c
|
||||
stdscan.$(OBJ): stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.$(OBJ): sync.c sync.h
|
||||
tokhash.$(OBJ): tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,174 +0,0 @@
|
||||
# Makefile for the Netwide Assembler under OS/2 (aimed at Borland C++ for OS/2)
|
||||
#
|
||||
# The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
||||
# Julian Hall. All rights reserved. The software is
|
||||
# redistributable under the licence given in the file "Licence"
|
||||
# distributed in the NASM archive.
|
||||
#
|
||||
# This makefile is made to compile NASMOS2 and NDISASM2
|
||||
# using Borland C++ for OS/2.
|
||||
#
|
||||
#-------------------------------------------------------------------
|
||||
# Make Directives
|
||||
#-------------------------------------------------------------------
|
||||
.AUTODEPEND :
|
||||
.SUFFIXES : .rc .res .obj .c .cpp .asm .hlp .itl .ipf
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
# Make Macros
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
LIBS = c2 + os2
|
||||
|
||||
# --------------------------------------------------------------------------
|
||||
#
|
||||
# c compile only
|
||||
# v include full sybolic debugging information
|
||||
# b force enums to be of type int
|
||||
#
|
||||
# --------------------------------------------------------------------------
|
||||
|
||||
CCFLAGS = /d /c /O /v /b
|
||||
|
||||
CC = bcc #compiler
|
||||
LINK = tlink #linker
|
||||
|
||||
LINKFLAGS = /c /x #linker flags
|
||||
#/c=case sIgnificance on symbols
|
||||
#/x=No map file at all
|
||||
|
||||
LIBRARIES = #any libaries to add, out side of the standard libary
|
||||
EXE = .exe #executable file extention (keep the . as the start)
|
||||
OBJ = obj #OBJ file extention
|
||||
|
||||
# How to build an object file from a C file
|
||||
.c.$(OBJ):
|
||||
$(CC) $(CCFLAGS) /o$*.$(OBJ) $*.c
|
||||
|
||||
|
||||
################################################################
|
||||
#The OBJ files that NASM is dependent on
|
||||
|
||||
NASMOBJS = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) \
|
||||
insnsa.$(OBJ) assemble.$(OBJ) labels.$(OBJ) \
|
||||
parser.$(OBJ) outform.$(OBJ) preproc.$(OBJ) \
|
||||
listing.$(OBJ) eval.$(OBJ)
|
||||
|
||||
################################################################
|
||||
#The OBJ files that NDISASM is dependent on
|
||||
|
||||
NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) \
|
||||
nasmlib.$(OBJ) insnsd.$(OBJ)
|
||||
|
||||
################################################################
|
||||
#The OBJ file for the output formats.
|
||||
|
||||
OUTOBJ= output\\outbin.$(OBJ) output\\outaout.$(OBJ) output\\outcoff.$(OBJ) \
|
||||
output\\outelf32.$(OBJ) output\\outelf64.$(OBJ) \
|
||||
output\\outobj.$(OBJ) output\\outas86.$(OBJ) \
|
||||
output\\outrdf.$(OBJ) output\\outdbg.$(OBJ) output\\outrdf2.$(OBJ) \
|
||||
output\\outieee.$(OBJ)
|
||||
|
||||
|
||||
################################################################
|
||||
# Build everything
|
||||
|
||||
all : nasmos2$(EXE) ndisasm2$(EXE)
|
||||
|
||||
################################################################
|
||||
#NASM, NDISASM compile, I hope it's self explanitory
|
||||
|
||||
nasmos2$(EXE): $(NASMOBJS) $(OUTOBJ)
|
||||
$(LINK) $(LINKFLAGS) @&&! #command for the linker
|
||||
C02 $(NASMOBJS) $(OUTOBJ) #OBJ file list
|
||||
$(EXED)nasmos2$(EXE) #EXE file name
|
||||
NASMOS2.MAP
|
||||
$(LIBS) #Libaries needed
|
||||
NASMOS2.DEF #Link Definition file
|
||||
!
|
||||
|
||||
ndisasm2$(EXE): $(NDISASMOBJS)
|
||||
$(LINK) $(LINKFLAGS) @&&! #command for the linker
|
||||
c02.obj $(NDISASMOBJS) #OBJ file list
|
||||
$(EXED)ndisasm2$(EXE) #EXE file name
|
||||
NDISAMS2.MAP
|
||||
$(LIBS) $(LIBRARIES) #Libaries needed
|
||||
!
|
||||
|
||||
clean :
|
||||
del *.obj
|
||||
del nasmos2$(EXE)
|
||||
del ndisasm2$(EXE)
|
||||
|
||||
# Makefile created by Chuck Crayne <ccrayne@pacific.net> --05/4/99
|
||||
# Based on Makefile.bc2 by Fox Cutter <lmb@comtch.iea.com> --01/27/97
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".$(OBJ)"
|
||||
# @path-separator: "\\"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.$(OBJ): assemble.c preproc.h insns.h pptok.h regs.h regflags.c \
|
||||
config.h version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.$(OBJ): crc64.c
|
||||
disasm.$(OBJ): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
|
||||
version.h nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.$(OBJ): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h
|
||||
float.$(OBJ): float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.$(OBJ): hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h \
|
||||
nasm.h insnsi.h
|
||||
insnsa.$(OBJ): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.$(OBJ): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.$(OBJ): insnsn.c
|
||||
labels.$(OBJ): labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.$(OBJ): listing.c regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h listing.h
|
||||
macros.$(OBJ): macros.c
|
||||
names.$(OBJ): names.c regs.c insnsn.c
|
||||
nasm.$(OBJ): nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h \
|
||||
regs.h outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h \
|
||||
insnsi.h listing.h
|
||||
nasmlib.$(OBJ): nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.$(OBJ): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.$(OBJ): outform.c regs.h config.h outform.h version.h nasm.h \
|
||||
insnsi.h
|
||||
output\\outaout.$(OBJ): output\\outaout.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\\outas86.$(OBJ): output\\outas86.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h insnsi.h
|
||||
output\\outbin.$(OBJ): output\\outbin.c labels.h eval.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\\outcoff.$(OBJ): output\\outcoff.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h insnsi.h
|
||||
output\\outdbg.$(OBJ): output\\outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output\\outelf32.$(OBJ): output\\outelf32.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\\outelf64.$(OBJ): output\\outelf64.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\\outieee.$(OBJ): output\\outieee.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h insnsi.h
|
||||
output\\outmacho.$(OBJ): output\\outmacho.c compiler.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
output\\outobj.$(OBJ): output\\outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output\\outrdf.$(OBJ): output\\outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output\\outrdf2.$(OBJ): output\\outrdf2.c rdoff\\rdoff.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.$(OBJ): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.$(OBJ): pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.$(OBJ): preproc.c preproc.h macros.c pptok.h regs.h config.h \
|
||||
version.h hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.$(OBJ): regdis.c
|
||||
regflags.$(OBJ): regflags.c
|
||||
regs.$(OBJ): regs.c
|
||||
regvals.$(OBJ): regvals.c
|
||||
stdscan.$(OBJ): stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.$(OBJ): sync.c sync.h
|
||||
tokhash.$(OBJ): tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,156 +0,0 @@
|
||||
# Makefile for the Netwide Assembler under 32-bit DOS(tm)
|
||||
#
|
||||
# The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
||||
# Julian Hall. All rights reserved. The software is
|
||||
# redistributable under the licence given in the file "Licence"
|
||||
# distributed in the NASM archive.
|
||||
#
|
||||
# This Makefile is designed to build NASM using the 32-bit WIN32 C
|
||||
# compiler Symantec(tm) C++ 7.5, provided you have a MAKE-utility
|
||||
# that's compatible to SMAKE.
|
||||
|
||||
CC = sc
|
||||
CCFLAGS = -c -a1 -mx -Nc -w2 -w7 -o+time -5
|
||||
# -5 optimize for pentium (tm)
|
||||
# -c compile only
|
||||
# -o-all no optimizations (to avoid problems in disasm.c)
|
||||
# -o+time optimize for speed
|
||||
# -o+space optimize for size
|
||||
# -A1 byte alignment for structures
|
||||
# -mn compile for Win32 executable
|
||||
# -mx compile for DOS386 (DOSX) executable
|
||||
# -Nc create COMDAT records
|
||||
# -w2 possible unattended assignment: off
|
||||
# -w7 for loops with empty instruction-body
|
||||
|
||||
LINK = link
|
||||
LINKFLAGS = /noi /exet:DOSX
|
||||
# /noignorecase all symbols are case-sensitive
|
||||
# /exet:NT Exetype: NT (Win32)
|
||||
# /exet:DOSX Exetype: DOSX (DOS32)
|
||||
# /su:console Subsystem: Console (Console-App)
|
||||
|
||||
LIBRARIES =
|
||||
EXE = .exe
|
||||
OBJ = obj
|
||||
|
||||
.c.$(OBJ):
|
||||
$(CC) $(CCFLAGS) $*.c
|
||||
|
||||
|
||||
#
|
||||
# modules needed for different programs
|
||||
#
|
||||
|
||||
NASMOBJS = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) insnsa.$(OBJ) \
|
||||
assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ) \
|
||||
output/outbin.$(OBJ) output/outaout.$(OBJ) output/outcoff.$(OBJ) \
|
||||
output/outelf32.$(OBJ) output/outelf64.$(OBJ) \
|
||||
output/outobj.$(OBJ) output/outas86.$(OBJ) output/outrdf.$(OBJ) output/outrdf2.$(OBJ) \
|
||||
output/outieee.$(OBJ) output/outdbg.$(OBJ) \
|
||||
preproc.$(OBJ) listing.$(OBJ) eval.$(OBJ)
|
||||
|
||||
NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \
|
||||
insnsd.$(OBJ)
|
||||
|
||||
|
||||
#
|
||||
# programs to create
|
||||
#
|
||||
|
||||
all : nasm$(EXE) ndisasm$(EXE)
|
||||
|
||||
|
||||
#
|
||||
# We have to have a horrible kludge here to get round the 128 character
|
||||
# limit, as usual... we'll simply use LNK-files :)
|
||||
#
|
||||
nasm$(EXE): $(NASMOBJS)
|
||||
$(LINK) $(LINKFLAGS) @<<
|
||||
cx.obj $(NASMOBJS)
|
||||
nasm.exe
|
||||
<<
|
||||
|
||||
ndisasm$(EXE): $(NDISASMOBJS)
|
||||
$(LINK) $(LINKFLAGS) @<<
|
||||
cx.obj $(NDISASMOBJS)
|
||||
ndisasm.exe
|
||||
<<
|
||||
|
||||
#
|
||||
# modules for programs
|
||||
#
|
||||
clean :
|
||||
del *.obj
|
||||
del nasm$(EXE)
|
||||
del ndisasm$(EXE)
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".$(OBJ)"
|
||||
# @path-separator: "/"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.$(OBJ): assemble.c preproc.h insns.h pptok.h regs.h regflags.c \
|
||||
config.h version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.$(OBJ): crc64.c
|
||||
disasm.$(OBJ): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
|
||||
version.h nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.$(OBJ): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h
|
||||
float.$(OBJ): float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.$(OBJ): hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h \
|
||||
nasm.h insnsi.h
|
||||
insnsa.$(OBJ): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.$(OBJ): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.$(OBJ): insnsn.c
|
||||
labels.$(OBJ): labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.$(OBJ): listing.c regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h listing.h
|
||||
macros.$(OBJ): macros.c
|
||||
names.$(OBJ): names.c regs.c insnsn.c
|
||||
nasm.$(OBJ): nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h \
|
||||
regs.h outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h \
|
||||
insnsi.h listing.h
|
||||
nasmlib.$(OBJ): nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.$(OBJ): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.$(OBJ): outform.c regs.h config.h outform.h version.h nasm.h \
|
||||
insnsi.h
|
||||
output/outaout.$(OBJ): output/outaout.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outas86.$(OBJ): output/outas86.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outbin.$(OBJ): output/outbin.c labels.h eval.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outcoff.$(OBJ): output/outcoff.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outdbg.$(OBJ): output/outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outelf32.$(OBJ): output/outelf32.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outelf64.$(OBJ): output/outelf64.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outieee.$(OBJ): output/outieee.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outmacho.$(OBJ): output/outmacho.c compiler.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
output/outobj.$(OBJ): output/outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outrdf.$(OBJ): output/outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outrdf2.$(OBJ): output/outrdf2.c rdoff/rdoff.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.$(OBJ): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.$(OBJ): pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.$(OBJ): preproc.c preproc.h macros.c pptok.h regs.h config.h \
|
||||
version.h hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.$(OBJ): regdis.c
|
||||
regflags.$(OBJ): regflags.c
|
||||
regs.$(OBJ): regs.c
|
||||
regvals.$(OBJ): regvals.c
|
||||
stdscan.$(OBJ): stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.$(OBJ): sync.c sync.h
|
||||
tokhash.$(OBJ): tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,153 +0,0 @@
|
||||
# Makefile for the Netwide Assembler under 32-bit Windows(tm)
|
||||
#
|
||||
# The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
||||
# Julian Hall. All rights reserved. The software is
|
||||
# redistributable under the licence given in the file "Licence"
|
||||
# distributed in the NASM archive.
|
||||
#
|
||||
# This Makefile is designed to build NASM using the 32-bit WIN32 C
|
||||
# compiler Symantec(tm) C++ 7.5, provided you have a MAKE-utility
|
||||
# that's compatible to SMAKE.
|
||||
|
||||
CC = sc
|
||||
CCFLAGS = -c -a1 -mn -Nc -w2 -w7 -o+time -5
|
||||
# -5 optimize for pentium (tm)
|
||||
# -c compile only
|
||||
# -o-all no optimizations (to avoid problems in disasm.c)
|
||||
# -o+time optimize for speed
|
||||
# -o+space optimize for size
|
||||
# -A1 byte alignment for structures
|
||||
# -mn compile for Win32 executable
|
||||
# -mx compile for DOS386 (DOSX) executable
|
||||
# -Nc create COMDAT records
|
||||
# -w2 possible unattended assignment: off
|
||||
# -w7 for loops with empty instruction-body
|
||||
|
||||
LINK = link
|
||||
LINKFLAGS = /noi /exet:NT /su:console
|
||||
# /noignorecase all symbols are case-sensitive
|
||||
# /exet:NT Exetype: NT (Win32)
|
||||
# /exet:DOSX Exetype: DOSX (DOS32)
|
||||
# /su:console Subsystem: Console (Console-App)
|
||||
|
||||
LIBRARIES =
|
||||
EXE = .exe
|
||||
OBJ = obj
|
||||
|
||||
.c.$(OBJ):
|
||||
$(CC) $(CCFLAGS) $*.c
|
||||
|
||||
|
||||
#
|
||||
# modules needed for different programs
|
||||
#
|
||||
|
||||
NASMOBJS = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) insnsa.$(OBJ) \
|
||||
assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ) \
|
||||
output/outbin.$(OBJ) output/outaout.$(OBJ) output/outcoff.$(OBJ) \
|
||||
output/outelf32.$(OBJ) output/outelf64.$(OBJ) \
|
||||
output/outobj.$(OBJ) output/outas86.$(OBJ) output/outrdf.$(OBJ) output/outdbg.$(OBJ) \
|
||||
output/outrdf2.$(OBJ) output/outieee.$(OBJ) \
|
||||
preproc.$(OBJ) listing.$(OBJ) eval.$(OBJ)
|
||||
|
||||
NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \
|
||||
insnsd.$(OBJ)
|
||||
|
||||
|
||||
#
|
||||
# programs to create
|
||||
#
|
||||
|
||||
all : nasmw$(EXE) ndisasmw$(EXE)
|
||||
|
||||
|
||||
#
|
||||
# We have to have a horrible kludge here to get round the 128 character
|
||||
# limit, as usual... we'll simply use LNK-files :)
|
||||
#
|
||||
nasmw$(EXE): $(NASMOBJS)
|
||||
$(LINK) $(LINKFLAGS) @<<
|
||||
$(NASMOBJS)
|
||||
nasmw.exe;
|
||||
<<
|
||||
|
||||
ndisasmw$(EXE): $(NDISASMOBJS)
|
||||
$(LINK) $(LINKFLAGS) @<<
|
||||
$(NDISASMOBJS)
|
||||
ndisasmw.exe;
|
||||
<<
|
||||
|
||||
clean :
|
||||
del *.obj
|
||||
del nasmw$(EXE)
|
||||
del ndisasmw$(EXE)
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".$(OBJ)"
|
||||
# @path-separator: "/"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.$(OBJ): assemble.c preproc.h insns.h pptok.h regs.h regflags.c \
|
||||
config.h version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.$(OBJ): crc64.c
|
||||
disasm.$(OBJ): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
|
||||
version.h nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.$(OBJ): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h
|
||||
float.$(OBJ): float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.$(OBJ): hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h \
|
||||
nasm.h insnsi.h
|
||||
insnsa.$(OBJ): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.$(OBJ): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.$(OBJ): insnsn.c
|
||||
labels.$(OBJ): labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.$(OBJ): listing.c regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h listing.h
|
||||
macros.$(OBJ): macros.c
|
||||
names.$(OBJ): names.c regs.c insnsn.c
|
||||
nasm.$(OBJ): nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h \
|
||||
regs.h outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h \
|
||||
insnsi.h listing.h
|
||||
nasmlib.$(OBJ): nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.$(OBJ): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.$(OBJ): outform.c regs.h config.h outform.h version.h nasm.h \
|
||||
insnsi.h
|
||||
output/outaout.$(OBJ): output/outaout.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outas86.$(OBJ): output/outas86.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outbin.$(OBJ): output/outbin.c labels.h eval.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outcoff.$(OBJ): output/outcoff.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outdbg.$(OBJ): output/outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outelf32.$(OBJ): output/outelf32.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outelf64.$(OBJ): output/outelf64.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outieee.$(OBJ): output/outieee.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outmacho.$(OBJ): output/outmacho.c compiler.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
output/outobj.$(OBJ): output/outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outrdf.$(OBJ): output/outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outrdf2.$(OBJ): output/outrdf2.c rdoff/rdoff.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.$(OBJ): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.$(OBJ): pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.$(OBJ): preproc.c preproc.h macros.c pptok.h regs.h config.h \
|
||||
version.h hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.$(OBJ): regdis.c
|
||||
regflags.$(OBJ): regflags.c
|
||||
regs.$(OBJ): regs.c
|
||||
regvals.$(OBJ): regvals.c
|
||||
stdscan.$(OBJ): stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.$(OBJ): sync.c sync.h
|
||||
tokhash.$(OBJ): tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,179 +0,0 @@
|
||||
# Unix fall-back makefile for the Netwide Assembler. For use if
|
||||
# `configure' fails to generate a workable Makefile.
|
||||
#
|
||||
# If `configure' doesn't work for you, *please* inform
|
||||
# <nasm-bugs@lists.sourceforge.net>
|
||||
#
|
||||
# The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
||||
# Julian Hall. All rights reserved. The software is
|
||||
# redistributable under the GNU Lesser General Public License.
|
||||
|
||||
# You may need to adjust these values.
|
||||
|
||||
prefix = /usr/local
|
||||
CC = cc
|
||||
CFLAGS = -O -I.
|
||||
PERL = perl
|
||||
|
||||
INSTALL = install -c
|
||||
INSTALL_PROGRAM = $(INSTALL)
|
||||
INSTALL_DATA = $(INSTALL) -m 644
|
||||
|
||||
exec_prefix = $(prefix)
|
||||
bindir = $(exec_prefix)/bin
|
||||
mandir = $(prefix)/man
|
||||
|
||||
# You _shouldn't_ need to adjust anything below this line.
|
||||
|
||||
.SUFFIXES: .c .o .h .mac .pl
|
||||
|
||||
.c.o:
|
||||
$(CC) -c $(CFLAGS) -o $*.o $*.c
|
||||
|
||||
NASM = nasm.o nasmlib.o float.o insnsa.o assemble.o labels.o \
|
||||
parser.o outform.o output/outbin.o output/outaout.o \
|
||||
output/outcoff.o output/outelf32.o output/outelf64.o \
|
||||
output/outobj.o output/outas86.o output/outdbg.o preproc.o listing.o \
|
||||
eval.o output/outrdf2.o output/outieee.o output/outmacho.o
|
||||
|
||||
NDISASM = ndisasm.o disasm.o sync.o nasmlib.o insnsd.o
|
||||
|
||||
all: nasm ndisasm
|
||||
|
||||
nasm: $(NASM)
|
||||
$(CC) -o nasm $(NASM)
|
||||
|
||||
ndisasm: $(NDISASM)
|
||||
$(CC) -o ndisasm $(NDISASM)
|
||||
|
||||
# These files contains all the standard macros that are derived from
|
||||
# the version number.
|
||||
version.h: version version.pl
|
||||
$(PERL) version.pl h < version > version.h
|
||||
|
||||
version.mac: version version.pl
|
||||
$(PERL) version.pl mac < 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) macros.pl standard.mac version.mac
|
||||
|
||||
insnsa.c: insns.pl insns.dat
|
||||
$(PERL) insns.pl -a insns.dat
|
||||
|
||||
insnsd.c: insns.pl insns.dat
|
||||
$(PERL) insns.pl -d insns.dat
|
||||
|
||||
insnsi.h: insns.pl insns.dat
|
||||
$(PERL) insns.pl -i insns.dat
|
||||
|
||||
insnsn.c: insns.pl insns.dat
|
||||
$(PERL) insns.pl -n insns.dat
|
||||
|
||||
# These source files are generated from regs.dat by yet another
|
||||
# perl script.
|
||||
regs.c: regs.dat regs.pl
|
||||
$(PERL) regs.pl c regs.dat > regs.c
|
||||
regflags.c: regs.dat regs.pl
|
||||
$(PERL) regs.pl fc regs.dat > regflags.c
|
||||
regdis.c: regs.dat regs.pl
|
||||
$(PERL) regs.pl dc regs.dat > regdis.c
|
||||
regvals.c: regs.dat regs.pl
|
||||
$(PERL) regs.pl vc regs.dat > regvals.c
|
||||
regs.h: regs.dat regs.pl
|
||||
$(PERL) regs.pl h regs.dat > regs.h
|
||||
|
||||
# This target generates all files that require perl.
|
||||
# This allows easier generation of distribution (see dist target).
|
||||
PERLREQ = macros.c insnsa.c insnsd.c insnsi.h insnsn.c \
|
||||
regs.c regs.h regflags.c regdis.c regvals.c \
|
||||
version.h version.mac
|
||||
perlreq: $(PERLREQ)
|
||||
|
||||
install: nasm ndisasm
|
||||
$(INSTALL_PROGRAM) nasm $(bindir)/nasm
|
||||
$(INSTALL_PROGRAM) ndisasm $(bindir)/ndisasm
|
||||
$(INSTALL_DATA) nasm.1 $(mandir)/man1/nasm.1
|
||||
$(INSTALL_DATA) ndisasm.1 $(mandir)/man1/ndisasm.1
|
||||
|
||||
clean:
|
||||
rm -f *.o nasm ndisasm
|
||||
$(MAKE) -C rdoff clean
|
||||
|
||||
rdf:
|
||||
$(MAKE) -C rdoff
|
||||
|
||||
rdf_install install_rdf:
|
||||
$(MAKE) -C rdoff install
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".o"
|
||||
# @path-separator: "/"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.o: assemble.c preproc.h insns.h pptok.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.o: crc64.c
|
||||
disasm.o: disasm.c insns.h sync.h regdis.c regs.h config.h regs.c version.h \
|
||||
nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.o: eval.c labels.h eval.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
float.o: float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.o: hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h nasm.h \
|
||||
insnsi.h
|
||||
insnsa.o: insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.o: insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.o: insnsn.c
|
||||
labels.o: labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.o: listing.c regs.h config.h version.h nasmlib.h nasm.h insnsi.h \
|
||||
listing.h
|
||||
macros.o: macros.c
|
||||
names.o: names.c regs.c insnsn.c
|
||||
nasm.o: nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h regs.h \
|
||||
outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h insnsi.h \
|
||||
listing.h
|
||||
nasmlib.o: nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.o: ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.o: outform.c regs.h config.h outform.h version.h nasm.h insnsi.h
|
||||
output/outaout.o: output/outaout.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outas86.o: output/outas86.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outbin.o: output/outbin.c labels.h eval.h regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outcoff.o: output/outcoff.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outdbg.o: output/outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outelf32.o: output/outelf32.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outelf64.o: output/outelf64.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outieee.o: output/outieee.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outmacho.o: output/outmacho.c compiler.h regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h insnsi.h
|
||||
output/outobj.o: output/outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outrdf.o: output/outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outrdf2.o: output/outrdf2.c rdoff/rdoff.h regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.o: parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.o: pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.o: preproc.c preproc.h macros.c pptok.h regs.h config.h version.h \
|
||||
hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.o: regdis.c
|
||||
regflags.o: regflags.c
|
||||
regs.o: regs.c
|
||||
regvals.o: regvals.c
|
||||
stdscan.o: stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.o: sync.c sync.h
|
||||
tokhash.o: tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,168 +0,0 @@
|
||||
# Makefile for the Netwide Assembler under Win32
|
||||
#
|
||||
# The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
||||
# Julian Hall. All rights reserved. The software is
|
||||
# redistributable under the licence given in the file "Licence"
|
||||
# distributed in the NASM archive.
|
||||
#
|
||||
# This Makefile is designed to build NASM as a Win32 command-
|
||||
# line executable. It's been tested with Visual C++ 1.10.
|
||||
|
||||
CC = cl /c /Ox /GF /I.
|
||||
QCL = cl /c
|
||||
LINK = cl
|
||||
LINKFLAGS =
|
||||
LIBRARIES =
|
||||
EXE = .exe#
|
||||
OBJ = obj#
|
||||
SUFFIX = w# # by default, this makefile produces nasmw.exe and ndisasmw.exe
|
||||
|
||||
.c.$(OBJ):
|
||||
$(CC) $*.c
|
||||
|
||||
NASMOBJS = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) insnsa.$(OBJ) \
|
||||
assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ) \
|
||||
output/outbin.$(OBJ) output/outaout.$(OBJ) output/outcoff.$(OBJ) \
|
||||
output/outelf32.$(OBJ) output/outelf64.$(OBJ) \
|
||||
output/outobj.$(OBJ) output/outas86.$(OBJ) output/outrdf.$(OBJ) output/outdbg.$(OBJ) \
|
||||
preproc.$(OBJ) listing.$(OBJ) eval.$(OBJ) output/outrdf2.$(OBJ) \
|
||||
output/outieee.$(OBJ)
|
||||
|
||||
NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \
|
||||
insnsd.$(OBJ)
|
||||
|
||||
all : nasm$(SUFFIX)$(EXE) ndisasm$(SUFFIX)$(EXE)
|
||||
|
||||
# We have to have a horrible kludge here to get round the 128 character
|
||||
# limit, as usual...
|
||||
LINKOBJS = a*.obj e*.obj f*.obj insnsa.obj l*.obj na*.obj o*.obj p*.obj z*.obj
|
||||
nasm$(SUFFIX)$(EXE): $(NASMOBJS)
|
||||
cl /Fenasm$(SUFFIX).exe $(LINKOBJS)
|
||||
|
||||
ndisasm$(SUFFIX)$(EXE): $(NDISASMOBJS)
|
||||
cl /Fendisasm$(SUFFIX).exe $(NDISASMOBJS)
|
||||
|
||||
# Another grotty hack: QC is less likely to run out of memory than
|
||||
# CL proper; and we don't need any optimisation in these modules
|
||||
# since they're just data.
|
||||
insnsa.$(OBJ): insnsa.c nasm.h version.h insnsi.h insns.h
|
||||
$(QCL) insnsa.c
|
||||
insnsd.$(OBJ): insnsd.c nasm.h version.h insnsi.h insns.h
|
||||
$(QCL) insnsd.c
|
||||
|
||||
# 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.
|
||||
|
||||
insnsa.c: insns.dat insns.pl
|
||||
perl insns.pl -a insns.dat
|
||||
insnsd.c: insns.dat insns.pl
|
||||
perl insns.pl -d insns.dat
|
||||
insnsi.h: insns.dat insns.pl
|
||||
perl insns.pl -i insns.dat
|
||||
insnsn.c: insns.dat insns.pl
|
||||
perl insns.pl -n insns.dat
|
||||
|
||||
# These files contains all the standard macros that are derived from
|
||||
# the version number.
|
||||
version.h: version version.pl
|
||||
perl version.pl h < version > version.h
|
||||
|
||||
version.mac: version version.pl
|
||||
perl version.pl mac < 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 macros.pl standard.mac version.mac
|
||||
|
||||
# These source files are generated from regs.dat by yet another
|
||||
# perl script.
|
||||
regs.c: regs.dat regs.pl
|
||||
perl regs.pl c regs.dat > regs.c
|
||||
regflags.c: regs.dat regs.pl
|
||||
perl regs.pl fc regs.dat > regflags.c
|
||||
regdis.c: regs.dat regs.pl
|
||||
perl regs.pl dc regs.dat > regdis.c
|
||||
regvals.c: regs.dat regs.pl
|
||||
perl regs.pl vc regs.dat > regvals.c
|
||||
regs.h: regs.dat regs.pl
|
||||
perl regs.pl h regs.dat > regs.h
|
||||
|
||||
clean :
|
||||
del *.obj
|
||||
del nasm$(SUFFIX)$(EXE)
|
||||
del ndisasm$(SUFFIX)$(EXE)
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".$(OBJ)"
|
||||
# @path-separator: "/"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.$(OBJ): assemble.c preproc.h insns.h pptok.h regs.h regflags.c \
|
||||
config.h version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.$(OBJ): crc64.c
|
||||
disasm.$(OBJ): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
|
||||
version.h nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.$(OBJ): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h
|
||||
float.$(OBJ): float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.$(OBJ): hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h \
|
||||
nasm.h insnsi.h
|
||||
insnsa.$(OBJ): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.$(OBJ): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.$(OBJ): insnsn.c
|
||||
labels.$(OBJ): labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.$(OBJ): listing.c regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h listing.h
|
||||
macros.$(OBJ): macros.c
|
||||
names.$(OBJ): names.c regs.c insnsn.c
|
||||
nasm.$(OBJ): nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h \
|
||||
regs.h outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h \
|
||||
insnsi.h listing.h
|
||||
nasmlib.$(OBJ): nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.$(OBJ): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.$(OBJ): outform.c regs.h config.h outform.h version.h nasm.h \
|
||||
insnsi.h
|
||||
output/outaout.$(OBJ): output/outaout.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outas86.$(OBJ): output/outas86.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outbin.$(OBJ): output/outbin.c labels.h eval.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outcoff.$(OBJ): output/outcoff.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outdbg.$(OBJ): output/outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outelf32.$(OBJ): output/outelf32.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outelf64.$(OBJ): output/outelf64.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outieee.$(OBJ): output/outieee.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outmacho.$(OBJ): output/outmacho.c compiler.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
output/outobj.$(OBJ): output/outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outrdf.$(OBJ): output/outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outrdf2.$(OBJ): output/outrdf2.c rdoff/rdoff.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.$(OBJ): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.$(OBJ): pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.$(OBJ): preproc.c preproc.h macros.c pptok.h regs.h config.h \
|
||||
version.h hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.$(OBJ): regdis.c
|
||||
regflags.$(OBJ): regflags.c
|
||||
regs.$(OBJ): regs.c
|
||||
regvals.$(OBJ): regvals.c
|
||||
stdscan.$(OBJ): stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.$(OBJ): sync.c sync.h
|
||||
tokhash.$(OBJ): tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,170 +0,0 @@
|
||||
# host: watcom c (dos, windows, os/2)
|
||||
# target: dos 32bit
|
||||
# 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 licence given in the file "Licence"
|
||||
# distributed in the NASM archive.
|
||||
#
|
||||
# this makefile is designed for use with dos version of Watcom C 32 bit
|
||||
# compiler, it generates dos 32 bit executable
|
||||
# it has been tested with
|
||||
# borland make.exe 4.0
|
||||
# microsoft nmake.exe 1.3
|
||||
# watcom wmake.exe /u 3.2 (remember about that /u option :)
|
||||
#
|
||||
# all this should compile under watcom c 9.5, 10.0, 10.5 and 10.6
|
||||
# i dont know about 11.0 because i didnt yet see it
|
||||
|
||||
CFLAGS = -fpi -mf -3r -s -bt=dos -oilrt
|
||||
# -fpi inline math + emulation
|
||||
# -mf flat model (isnt it by default :)
|
||||
# -3r 386 register calling (does everyone have pentium nowadays ?)
|
||||
# -s no stack checking
|
||||
# -bt=dos target system - dos
|
||||
# -oilrt mega cool optimization :)
|
||||
|
||||
CC = wcc386.exe $(CFLAGS)
|
||||
# compiler
|
||||
LFLAGS = SYSTEM dos4g
|
||||
# linker flags
|
||||
# target system - dos4gw
|
||||
LD = wlink.exe $(LFLAGS)
|
||||
# linker
|
||||
OBJ = obj
|
||||
# whatever
|
||||
|
||||
.c.$(OBJ):
|
||||
$(CC) $*.c
|
||||
|
||||
NASMOBJS = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) insnsa.$(OBJ) \
|
||||
assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ) \
|
||||
output/outbin.$(OBJ) output/outaout.$(OBJ) output/outcoff.$(OBJ) \
|
||||
output/outelf32.$(OBJ) output/outelf64.$(OBJ) \
|
||||
output/outobj.$(OBJ) output/outas86.$(OBJ) output/outrdf.$(OBJ) output/outdbg.$(OBJ) \
|
||||
preproc.$(OBJ) listing.$(OBJ) eval.$(OBJ) output/outrdf2.$(OBJ) \
|
||||
output/outieee.$(OBJ)
|
||||
|
||||
NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \
|
||||
insnsd.$(OBJ)
|
||||
|
||||
all : nasm.exe ndisasm.exe
|
||||
echo This is dummy command for dumb make
|
||||
|
||||
nasm.exe: $(NASMOBJS) NASM.LNK
|
||||
$(LD) @NASM.LNK
|
||||
|
||||
ndisasm.exe: $(NDISASMOBJS) NDISASM.LNK
|
||||
$(LD) @NDISASM.LNK
|
||||
|
||||
# linker response files
|
||||
# that may take long, too much spawning command.com :)
|
||||
NASM.LNK: makefile.wc
|
||||
echo N nasm.exe > NASM.LNK
|
||||
echo F nasm.$(OBJ) >> NASM.LNK
|
||||
echo F nasmlib.$(OBJ) >> NASM.LNK
|
||||
echo F eval.$(OBJ) >> NASM.LNK
|
||||
echo F float.$(OBJ) >> NASM.LNK
|
||||
echo F insnsa.$(OBJ) >> NASM.LNK
|
||||
echo F assemble.$(OBJ) >> NASM.LNK
|
||||
echo F labels.$(OBJ) >> NASM.LNK
|
||||
echo F listing.$(OBJ) >> NASM.LNK
|
||||
echo F parser.$(OBJ) >> NASM.LNK
|
||||
echo F preproc.$(OBJ) >> NASM.LNK
|
||||
echo F outform.$(OBJ) >> NASM.LNK
|
||||
echo F output/outbin.$(OBJ) >> NASM.LNK
|
||||
echo F output/outaout.$(OBJ) >> NASM.LNK
|
||||
echo F output/outcoff.$(OBJ) >> NASM.LNK
|
||||
echo F output/outelf32.$(OBJ) >> NASM.LNK
|
||||
echo F output/outelf64.$(OBJ) >> NASM.LNK
|
||||
echo F output/outobj.$(OBJ) >> NASM.LNK
|
||||
echo F output/outas86.$(OBJ) >> NASM.LNK
|
||||
echo F output/outrdf.$(OBJ) >> NASM.LNK
|
||||
echo F output/outrdf2.$(OBJ) >> NASM.LNK
|
||||
echo F output/outieee.$(OBJ) >> NASM.LNK
|
||||
echo F output/outdbg.$(OBJ) >> NASM.LNK
|
||||
|
||||
NDISASM.LNK: makefile.wc
|
||||
echo N ndisasm.exe > NDISASM.LNK
|
||||
echo F ndisasm.$(OBJ) >> NDISASM.LNK
|
||||
echo F disasm.$(OBJ) >> NDISASM.LNK
|
||||
echo F sync.$(OBJ) >> NDISASM.LNK
|
||||
echo F nasmlib.$(OBJ) >> NDISASM.LNK
|
||||
echo F insnsd.$(OBJ) >> NDISASM.LNK
|
||||
|
||||
clean :
|
||||
del *.obj
|
||||
del *.lnk
|
||||
del nasm.exe
|
||||
del ndisasm.exe
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".$(OBJ)"
|
||||
# @path-separator: "/"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.$(OBJ): assemble.c preproc.h insns.h pptok.h regs.h regflags.c \
|
||||
config.h version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.$(OBJ): crc64.c
|
||||
disasm.$(OBJ): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
|
||||
version.h nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.$(OBJ): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h
|
||||
float.$(OBJ): float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.$(OBJ): hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h \
|
||||
nasm.h insnsi.h
|
||||
insnsa.$(OBJ): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.$(OBJ): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.$(OBJ): insnsn.c
|
||||
labels.$(OBJ): labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.$(OBJ): listing.c regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h listing.h
|
||||
macros.$(OBJ): macros.c
|
||||
names.$(OBJ): names.c regs.c insnsn.c
|
||||
nasm.$(OBJ): nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h \
|
||||
regs.h outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h \
|
||||
insnsi.h listing.h
|
||||
nasmlib.$(OBJ): nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.$(OBJ): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.$(OBJ): outform.c regs.h config.h outform.h version.h nasm.h \
|
||||
insnsi.h
|
||||
output/outaout.$(OBJ): output/outaout.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outas86.$(OBJ): output/outas86.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outbin.$(OBJ): output/outbin.c labels.h eval.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outcoff.$(OBJ): output/outcoff.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outdbg.$(OBJ): output/outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outelf32.$(OBJ): output/outelf32.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outelf64.$(OBJ): output/outelf64.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outieee.$(OBJ): output/outieee.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outmacho.$(OBJ): output/outmacho.c compiler.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
output/outobj.$(OBJ): output/outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outrdf.$(OBJ): output/outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outrdf2.$(OBJ): output/outrdf2.c rdoff/rdoff.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.$(OBJ): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.$(OBJ): pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.$(OBJ): preproc.c preproc.h macros.c pptok.h regs.h config.h \
|
||||
version.h hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.$(OBJ): regdis.c
|
||||
regflags.$(OBJ): regflags.c
|
||||
regs.$(OBJ): regs.c
|
||||
regvals.$(OBJ): regvals.c
|
||||
stdscan.$(OBJ): stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.$(OBJ): sync.c sync.h
|
||||
tokhash.$(OBJ): tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,155 +0,0 @@
|
||||
# host: watcom c (dos, windows, os/2)
|
||||
# target: dos 16bit
|
||||
# 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 licence given in the file "Licence"
|
||||
# distributed in the NASM archive.
|
||||
#
|
||||
# this makefile is designed for use with the OpenWatcom C
|
||||
# compiler, it generates dos 16 bit executable
|
||||
# it has been tested with
|
||||
# OpenWatcom wmake.exe /u 1.1-rc1 (remember about that /u option :)
|
||||
#
|
||||
# Tested with OpenWatcom 1.1-rc1.
|
||||
# MAKE SURE THE "WATCOM" ENVIRONMENT VARIABLE IS SET TO THE
|
||||
# OPENWATCOM INCLUDE DIRECTORY!
|
||||
|
||||
# output formats
|
||||
OUTFORMS = -DOF_ONLY -DOF_BIN -DOF_OBJ -DOF_WIN32 -DOF_AS86
|
||||
|
||||
# compiler flags
|
||||
CFLAGS = -fpi -ml -j -s -bt=dos -ohk -zp1 -os -zt32 -I$(%WATCOM)\h $(OUTFORMS)
|
||||
# -fpi inline math + emulation
|
||||
# -ml large model
|
||||
# -j signed char
|
||||
# -s no stack checking
|
||||
# -bt=dos target system - dos
|
||||
# -ohk optimizations
|
||||
# -zp1 don't align structure members
|
||||
# -os optimize for size
|
||||
# -zt32 put objects > 32 bytes in separate segments
|
||||
|
||||
# compiler
|
||||
CC = wcc $(CFLAGS)
|
||||
# linker flags
|
||||
LDFLAGS =
|
||||
# linker
|
||||
LD = wcl
|
||||
# object file extension
|
||||
OBJ = obj
|
||||
|
||||
# Where C directories live
|
||||
.c : .;.\output\
|
||||
|
||||
.c.obj:
|
||||
$(CC) -fo=$@ $[@
|
||||
|
||||
NASMOBJS = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) insnsa.$(OBJ) \
|
||||
assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ) \
|
||||
outbin.$(OBJ) outaout.$(OBJ) outcoff.$(OBJ) \
|
||||
outelf32.$(OBJ) outelf64.$(OBJ) outobj.$(OBJ) outas86.$(OBJ) \
|
||||
outrdf.$(OBJ) outdbg.$(OBJ) \
|
||||
preproc.$(OBJ) listing.$(OBJ) eval.$(OBJ) outrdf2.$(OBJ) \
|
||||
outieee.$(OBJ)
|
||||
|
||||
NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \
|
||||
insnsd.$(OBJ)
|
||||
|
||||
.NOCHECK
|
||||
all : nasm.exe ndisasm.exe
|
||||
rem This is dummy command for dumb make
|
||||
|
||||
nasm.exe: $(NASMOBJS)
|
||||
$(LD) $(LDFLAGS) -fe=nasm.exe $(NASMOBJS)
|
||||
|
||||
ndisasm.exe: $(NDISASMOBJS)
|
||||
$(LD) $(LDFLAGS) -fe=ndisasm.exe $(NDISASMOBJS)
|
||||
|
||||
# linker response files
|
||||
nasm.lnk: $(NASMOBJS)
|
||||
%create $@
|
||||
%append $@ N nasm.exe
|
||||
for %i in ($(NASMOBJS)) do %append $@ F %i
|
||||
|
||||
ndisasm.lnk:
|
||||
%create $@
|
||||
%append $@ N nasm.exe
|
||||
for %i in ($(NDISASMOBJS)) do %append $@ F %i
|
||||
|
||||
clean : .SYMBOLIC
|
||||
-del *.obj
|
||||
-del *.lnk
|
||||
-del nasm.exe
|
||||
-del ndisasm.exe
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".$(OBJ)"
|
||||
# @path-separator: "" # This means kill the path completely
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.$(OBJ): assemble.c preproc.h insns.h pptok.h regs.h regflags.c \
|
||||
config.h version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.$(OBJ): crc64.c
|
||||
disasm.$(OBJ): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
|
||||
version.h nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.$(OBJ): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h
|
||||
float.$(OBJ): float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.$(OBJ): hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h \
|
||||
nasm.h insnsi.h
|
||||
insnsa.$(OBJ): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.$(OBJ): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.$(OBJ): insnsn.c
|
||||
labels.$(OBJ): labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.$(OBJ): listing.c regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h listing.h
|
||||
macros.$(OBJ): macros.c
|
||||
names.$(OBJ): names.c regs.c insnsn.c
|
||||
nasm.$(OBJ): nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h \
|
||||
regs.h outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h \
|
||||
insnsi.h listing.h
|
||||
nasmlib.$(OBJ): nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.$(OBJ): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.$(OBJ): outform.c regs.h config.h outform.h version.h nasm.h \
|
||||
insnsi.h
|
||||
outaout.$(OBJ): outaout.c regs.h outform.h config.h version.h nasmlib.h \
|
||||
nasm.h stdscan.h insnsi.h
|
||||
outas86.$(OBJ): outas86.c regs.h outform.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h
|
||||
outbin.$(OBJ): outbin.c labels.h eval.h regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
outcoff.$(OBJ): outcoff.c regs.h outform.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h
|
||||
outdbg.$(OBJ): outdbg.c regs.h outform.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
outelf32.$(OBJ): outelf32.c regs.h outform.h config.h version.h nasmlib.h \
|
||||
nasm.h stdscan.h insnsi.h
|
||||
outelf64.$(OBJ): outelf64.c regs.h outform.h config.h version.h nasmlib.h \
|
||||
nasm.h stdscan.h insnsi.h
|
||||
outieee.$(OBJ): outieee.c regs.h outform.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h
|
||||
outmacho.$(OBJ): outmacho.c compiler.h regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
outobj.$(OBJ): outobj.c regs.h outform.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
outrdf.$(OBJ): outrdf.c regs.h outform.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
outrdf2.$(OBJ): outrdf2.c rdoff.h regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
parser.$(OBJ): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.$(OBJ): pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.$(OBJ): preproc.c preproc.h macros.c pptok.h regs.h config.h \
|
||||
version.h hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.$(OBJ): regdis.c
|
||||
regflags.$(OBJ): regflags.c
|
||||
regs.$(OBJ): regs.c
|
||||
regvals.$(OBJ): regvals.c
|
||||
stdscan.$(OBJ): stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.$(OBJ): sync.c sync.h
|
||||
tokhash.$(OBJ): tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
@ -1,170 +0,0 @@
|
||||
# host: watcom c (dos, windows, os/2)
|
||||
# target: windows nt character mode executable
|
||||
# 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 licence given in the file "Licence"
|
||||
# distributed in the NASM archive.
|
||||
#
|
||||
# this makefile is designed for use with of Watcom C 32 bit compiler
|
||||
# it generates win32 console (character mode) executable
|
||||
# it has been tested with
|
||||
# borland make.exe 4.0
|
||||
# microsoft nmake.exe 1.3
|
||||
# watcom wmake.exe /u 3.2 (remember about that /u option :)
|
||||
#
|
||||
# all this should compile under watcom c 9.5, 10.0, 10.5 and 10.6
|
||||
# i dont know about 11.0 because i didnt yet see it
|
||||
|
||||
CFLAGS = -fpi -mf -3r -s -bt=dos -oilrt
|
||||
# -fpi inline math + emulation
|
||||
# -mf flat model (isnt it by default :)
|
||||
# -3r 386 register calling (does everyone have pentium nowadays ?)
|
||||
# -s no stack checking
|
||||
# -bt=nt target system - windows nt
|
||||
# -oilrt mega cool optimization :)
|
||||
|
||||
CC = wcc386.exe $(CFLAGS)
|
||||
# compiler
|
||||
LFLAGS = SYSTEM nt
|
||||
# linker flags
|
||||
# target system nt - character mode
|
||||
LD = wlink.exe $(LFLAGS)
|
||||
# linker
|
||||
OBJ = obj
|
||||
# whatever
|
||||
|
||||
.c.$(OBJ):
|
||||
$(CC) $*.c
|
||||
|
||||
NASMOBJS = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) insnsa.$(OBJ) \
|
||||
assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ) \
|
||||
output/outbin.$(OBJ) output/outaout.$(OBJ) output/outcoff.$(OBJ) \
|
||||
output/outelf32.$(OBJ) output/outelf64.$(OBJ) \
|
||||
output/outobj.$(OBJ) output/outas86.$(OBJ) output/outrdf.$(OBJ) output/outdbg.$(OBJ) \
|
||||
preproc.$(OBJ) listing.$(OBJ) eval.$(OBJ) output/outrdf2.$(OBJ) \
|
||||
output/outieee.$(OBJ)
|
||||
|
||||
NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \
|
||||
insnsd.$(OBJ)
|
||||
|
||||
all : nasm.exe ndisasm.exe
|
||||
echo This is dummy command for dumb make
|
||||
|
||||
nasm.exe: $(NASMOBJS) NASM.LNK
|
||||
$(LD) @NASM.LNK
|
||||
|
||||
ndisasm.exe: $(NDISASMOBJS) NDISASM.LNK
|
||||
$(LD) @NDISASM.LNK
|
||||
|
||||
# linker response files
|
||||
# that may take long, too much spawning command.com :)
|
||||
NASM.LNK: makefile.wcw
|
||||
echo N nasm.exe > NASM.LNK
|
||||
echo F nasm.$(OBJ) >> NASM.LNK
|
||||
echo F nasmlib.$(OBJ) >> NASM.LNK
|
||||
echo F eval.$(OBJ) >> NASM.LNK
|
||||
echo F float.$(OBJ) >> NASM.LNK
|
||||
echo F insnsa.$(OBJ) >> NASM.LNK
|
||||
echo F assemble.$(OBJ) >> NASM.LNK
|
||||
echo F labels.$(OBJ) >> NASM.LNK
|
||||
echo F listing.$(OBJ) >> NASM.LNK
|
||||
echo F parser.$(OBJ) >> NASM.LNK
|
||||
echo F preproc.$(OBJ) >> NASM.LNK
|
||||
echo F outform.$(OBJ) >> NASM.LNK
|
||||
echo F output/outbin.$(OBJ) >> NASM.LNK
|
||||
echo F output/outaout.$(OBJ) >> NASM.LNK
|
||||
echo F output/outcoff.$(OBJ) >> NASM.LNK
|
||||
echo F output/outelf32.$(OBJ) >> NASM.LNK
|
||||
echo F output/outelf64.$(OBJ) >> NASM.LNK
|
||||
echo F output/outobj.$(OBJ) >> NASM.LNK
|
||||
echo F output/outas86.$(OBJ) >> NASM.LNK
|
||||
echo F output/outrdf.$(OBJ) >> NASM.LNK
|
||||
echo F output/outrdf2.$(OBJ) >> NASM.LNK
|
||||
echo F output/outieee.$(OBJ) >> NASM.LNK
|
||||
echo F output/outdbg.$(OBJ) >> NASM.LNK
|
||||
|
||||
NDISASM.LNK: makefile.wcw
|
||||
echo N ndisasm.exe > NDISASM.LNK
|
||||
echo F ndisasm.$(OBJ) >> NDISASM.LNK
|
||||
echo F disasm.$(OBJ) >> NDISASM.LNK
|
||||
echo F sync.$(OBJ) >> NDISASM.LNK
|
||||
echo F nasmlib.$(OBJ) >> NDISASM.LNK
|
||||
echo F insnsd.$(OBJ) >> NDISASM.LNK
|
||||
|
||||
clean :
|
||||
del *.obj
|
||||
del *.lnk
|
||||
del nasm.exe
|
||||
del ndisasm.exe
|
||||
|
||||
#-- Magic hints to mkdep.pl --#
|
||||
# @object-ending: ".$(OBJ)"
|
||||
# @path-separator: "/"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.$(OBJ): assemble.c preproc.h insns.h pptok.h regs.h regflags.c \
|
||||
config.h version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
|
||||
crc64.$(OBJ): crc64.c
|
||||
disasm.$(OBJ): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
|
||||
version.h nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.$(OBJ): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h
|
||||
float.$(OBJ): float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.$(OBJ): hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h \
|
||||
nasm.h insnsi.h
|
||||
insnsa.$(OBJ): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.$(OBJ): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.$(OBJ): insnsn.c
|
||||
labels.$(OBJ): labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.$(OBJ): listing.c regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h listing.h
|
||||
macros.$(OBJ): macros.c
|
||||
names.$(OBJ): names.c regs.c insnsn.c
|
||||
nasm.$(OBJ): nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h \
|
||||
regs.h outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h \
|
||||
insnsi.h listing.h
|
||||
nasmlib.$(OBJ): nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.$(OBJ): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.$(OBJ): outform.c regs.h config.h outform.h version.h nasm.h \
|
||||
insnsi.h
|
||||
output/outaout.$(OBJ): output/outaout.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outas86.$(OBJ): output/outas86.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outbin.$(OBJ): output/outbin.c labels.h eval.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outcoff.$(OBJ): output/outcoff.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outdbg.$(OBJ): output/outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outelf32.$(OBJ): output/outelf32.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outelf64.$(OBJ): output/outelf64.c regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outieee.$(OBJ): output/outieee.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outmacho.$(OBJ): output/outmacho.c compiler.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
output/outobj.$(OBJ): output/outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outrdf.$(OBJ): output/outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outrdf2.$(OBJ): output/outrdf2.c rdoff/rdoff.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.$(OBJ): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.$(OBJ): pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.$(OBJ): preproc.c preproc.h macros.c pptok.h regs.h config.h \
|
||||
version.h hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.$(OBJ): regdis.c
|
||||
regflags.$(OBJ): regflags.c
|
||||
regs.$(OBJ): regs.c
|
||||
regvals.$(OBJ): regvals.c
|
||||
stdscan.$(OBJ): stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.$(OBJ): sync.c sync.h
|
||||
tokhash.$(OBJ): tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
231
Mkfiles/msvc.mak
Normal file
231
Mkfiles/msvc.mak
Normal file
@ -0,0 +1,231 @@
|
||||
# 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
|
||||
INTERNAL_CFLAGS = /I$(srcdir) /I. /Dsnprintf=sprintf_s
|
||||
ALL_CFLAGS = $(BUILD_CFLAGS) $(INTERNAL_CFLAGS)
|
||||
LDFLAGS =
|
||||
LIBS =
|
||||
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$@ $<
|
||||
|
||||
NASM = nasm.$(O) nasmlib.$(O) float.$(O) insnsa.$(O) assemble.$(O) \
|
||||
labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) \
|
||||
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) \
|
||||
preproc.$(O) pptok.$(O) \
|
||||
listing.$(O) eval.$(O) stdscan.$(O) tokhash.$(O)
|
||||
|
||||
NDISASM = ndisasm.$(O) disasm.$(O) sync.$(O) nasmlib.$(O) insnsd.$(O)
|
||||
|
||||
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.
|
||||
|
||||
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
|
||||
$(PERL) $(srcdir)/tokhash.pl $(srcdir)/insns.dat $(srcdir)/regs.dat \
|
||||
$(srcdir)/tokens.dat > tokhash.c
|
||||
|
||||
# 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).
|
||||
PERLREQ = macros.c insnsa.c insnsd.c insnsi.h insnsn.c \
|
||||
regs.c regs.h regflags.c regdis.c regvals.c tokhash.c \
|
||||
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: "/"
|
||||
#-- Everything below is generated by mkdep.pl - do not edit --#
|
||||
assemble.$(O): assemble.c preproc.h insns.h pptok.h regs.h regflags.c \
|
||||
config.h version.h nasmlib.h nasm.h regvals.c insnsi.h assemble.h
|
||||
crc64.$(O): crc64.c
|
||||
disasm.$(O): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
|
||||
version.h nasm.h insnsn.c names.c insnsi.h disasm.h
|
||||
eval.$(O): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
float.$(O): float.c regs.h config.h version.h nasm.h insnsi.h
|
||||
hashtbl.$(O): hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h nasm.h \
|
||||
insnsi.h
|
||||
insnsa.$(O): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsd.$(O): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
||||
insnsn.$(O): insnsn.c
|
||||
labels.$(O): labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
listing.$(O): listing.c regs.h config.h version.h nasmlib.h nasm.h insnsi.h \
|
||||
listing.h
|
||||
macros.$(O): macros.c
|
||||
names.$(O): names.c regs.c insnsn.c
|
||||
nasm.$(O): nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h regs.h \
|
||||
outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h insnsi.h \
|
||||
listing.h
|
||||
nasmlib.$(O): nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
insnsi.h
|
||||
ndisasm.$(O): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
|
||||
nasm.h insnsi.h disasm.h
|
||||
outform.$(O): outform.c regs.h config.h outform.h version.h nasm.h insnsi.h
|
||||
output/outaout.$(O): output/outaout.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outas86.$(O): output/outas86.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outbin.$(O): output/outbin.c labels.h eval.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outcoff.$(O): output/outcoff.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outdbg.$(O): output/outdbg.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outelf32.$(O): output/outelf32.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outelf64.$(O): output/outelf64.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outieee.$(O): output/outieee.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outmacho.$(O): output/outmacho.c compiler.h regs.h outform.h config.h \
|
||||
version.h nasmlib.h nasm.h insnsi.h
|
||||
output/outobj.$(O): output/outobj.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
output/outrdf.$(O): output/outrdf.c regs.h outform.h config.h version.h \
|
||||
nasmlib.h nasm.h insnsi.h
|
||||
output/outrdf2.$(O): output/outrdf2.c rdoff/rdoff.h regs.h outform.h \
|
||||
config.h version.h nasmlib.h nasm.h insnsi.h
|
||||
parser.$(O): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
|
||||
version.h nasmlib.h nasm.h stdscan.h insnsi.h
|
||||
pptok.$(O): pptok.c preproc.h pptok.h nasmlib.h
|
||||
preproc.$(O): preproc.c preproc.h macros.c pptok.h regs.h config.h version.h \
|
||||
hashtbl.h nasmlib.h nasm.h insnsi.h
|
||||
regdis.$(O): regdis.c
|
||||
regflags.$(O): regflags.c
|
||||
regs.$(O): regs.c
|
||||
regvals.$(O): regvals.c
|
||||
stdscan.$(O): stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
|
||||
stdscan.h insnsi.h
|
||||
sync.$(O): sync.c sync.h
|
||||
tokhash.$(O): tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h
|
Loading…
x
Reference in New Issue
Block a user