mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
e87613b14e
Introduce new standard __NASM_SUBMINOR__ and __NASM_VER__ macros.
178 lines
6.3 KiB
Makefile
178 lines
6.3 KiB
Makefile
# 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
|
|
#
|
|
|
|
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 -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
|
|
# /-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/outelf.$(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!
|
|
|
|
|
|
# OBJs with dependencies
|
|
assemble.$(OBJ): assemble.c nasm.h version.h insnsi.h assemble.h insns.h
|
|
disasm.$(OBJ): disasm.c nasm.h version.h insnsi.h disasm.h sync.h insns.h names.c insnsn.c
|
|
eval.$(OBJ): eval.c nasm.h version.h insnsi.h nasmlib.h eval.h
|
|
float.$(OBJ): float.c nasm.h version.h insnsi.h
|
|
insnsa.$(OBJ): insnsa.c nasm.h version.h insnsi.h insns.h
|
|
insnsd.$(OBJ): insnsd.c nasm.h version.h insnsi.h insns.h
|
|
labels.$(OBJ): labels.c nasm.h version.h insnsi.h nasmlib.h
|
|
listing.$(OBJ): listing.c nasm.h version.h insnsi.h nasmlib.h listing.h
|
|
nasm.$(OBJ): nasm.c nasm.h version.h insnsi.h nasmlib.h parser.h assemble.h labels.h \
|
|
listing.h outform.h
|
|
nasmlib.$(OBJ): nasmlib.c nasm.h version.h insnsi.h nasmlib.h names.c insnsn.c
|
|
ndisasm.$(OBJ): ndisasm.c nasm.h version.h insnsi.h sync.h disasm.h
|
|
output/outas86.$(OBJ): output/outas86.c nasm.h version.h insnsi.h nasmlib.h
|
|
output/outaout.$(OBJ): output/outaout.c nasm.h version.h insnsi.h nasmlib.h
|
|
output/outbin.$(OBJ): output/outbin.c nasm.h version.h insnsi.h nasmlib.h
|
|
output/outcoff.$(OBJ): output/outcoff.c nasm.h version.h insnsi.h nasmlib.h
|
|
output/outdbg.$(OBJ): output/outdbg.c nasm.h version.h insnsi.h nasmlib.h
|
|
output/outelf.$(OBJ): output/outelf.c nasm.h version.h insnsi.h nasmlib.h
|
|
output/outobj.$(OBJ): output/outobj.c nasm.h version.h insnsi.h nasmlib.h
|
|
output/outrdf2.$(OBJ): output/outrdf2.c nasm.h version.h insnsi.h nasmlib.h
|
|
output/outieee.$(OBJ): output/outieee.c nasm.h version.h insnsi.h nasmlib.h
|
|
outform.$(OBJ): outform.c outform.h nasm.h version.h insnsi.h
|
|
parser.$(OBJ): parser.c nasm.h version.h insnsi.h nasmlib.h parser.h float.h names.c insnsn.c
|
|
preproc.$(OBJ): preproc.c macros.c preproc.h nasm.h version.h insnsi.h nasmlib.h
|
|
sync.$(OBJ): sync.c sync.h
|
|
|
|
# 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: InstructionData
|
|
insnsd.c: InstructionData
|
|
insnsi.h: InstructionData
|
|
insnsn.c: InstructionData
|
|
|
|
InstructionData: insns.dat insns.pl
|
|
perl $(srcdir)/insns.pl -a $(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
|
|
|
|
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
|