mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-04-06 18:30:21 +08:00
97 lines
3.7 KiB
Makefile
97 lines
3.7 KiB
Makefile
# 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/outelf.$(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 insns.h assemble.h regvals.c nasm.h regs.h \
|
|
insnsi.h nasmlib.h version.h
|
|
disasm.$(OBJ): disasm.c insns.h regs.c sync.h names.c nasm.h disasm.h regs.h \
|
|
insnsn.c insnsi.h version.h regdis.c
|
|
eval.$(OBJ): eval.c nasm.h regs.h labels.h nasmlib.h version.h eval.h
|
|
float.$(OBJ): float.c nasm.h regs.h version.h
|
|
insnsa.$(OBJ): insnsa.c insns.h nasm.h regs.h insnsi.h version.h
|
|
insnsd.$(OBJ): insnsd.c insns.h nasm.h regs.h insnsi.h version.h
|
|
insnsn.$(OBJ): insnsn.c
|
|
labels.$(OBJ): labels.c nasm.h regs.h nasmlib.h version.h
|
|
listing.$(OBJ): listing.c listing.h nasm.h regs.h nasmlib.h version.h
|
|
macros.$(OBJ): macros.c
|
|
names.$(OBJ): names.c regs.c insnsn.c
|
|
nasm.$(OBJ): nasm.c listing.h preproc.h insns.h outform.h assemble.h \
|
|
parser.h nasm.h regs.h labels.h insnsi.h nasmlib.h version.h eval.h
|
|
nasmlib.$(OBJ): nasmlib.c insns.h regs.c names.c nasm.h regs.h insnsn.c \
|
|
insnsi.h nasmlib.h version.h
|
|
ndisasm.$(OBJ): ndisasm.c insns.h sync.h nasm.h disasm.h regs.h insnsi.h \
|
|
nasmlib.h version.h
|
|
outform.$(OBJ): outform.c outform.h nasm.h regs.h version.h
|
|
output/outaout.$(OBJ): output/outaout.c outform.h nasm.h regs.h nasmlib.h \
|
|
version.h
|
|
output/outas86.$(OBJ): output/outas86.c outform.h nasm.h regs.h nasmlib.h \
|
|
version.h
|
|
output/outbin.$(OBJ): output/outbin.c outform.h nasm.h regs.h nasmlib.h \
|
|
version.h
|
|
output/outcoff.$(OBJ): output/outcoff.c outform.h nasm.h regs.h nasmlib.h \
|
|
version.h
|
|
output/outdbg.$(OBJ): output/outdbg.c outform.h nasm.h regs.h nasmlib.h \
|
|
version.h
|
|
output/outelf.$(OBJ): output/outelf.c outform.h nasm.h regs.h nasmlib.h \
|
|
version.h
|
|
output/outieee.$(OBJ): output/outieee.c outform.h nasm.h regs.h nasmlib.h \
|
|
version.h
|
|
output/outobj.$(OBJ): output/outobj.c outform.h nasm.h regs.h nasmlib.h \
|
|
version.h
|
|
output/outrdf.$(OBJ): output/outrdf.c outform.h nasm.h regs.h nasmlib.h \
|
|
version.h
|
|
output/outrdf2.$(OBJ): output/outrdf2.c outform.h nasm.h regs.h nasmlib.h \
|
|
version.h
|
|
parser.$(OBJ): parser.c insns.h parser.h nasm.h regs.h insnsi.h regflags.c \
|
|
float.h nasmlib.h version.h
|
|
preproc.$(OBJ): preproc.c nasm.h macros.c regs.h nasmlib.h version.h
|
|
regdis.$(OBJ): regdis.c
|
|
regflags.$(OBJ): regflags.c
|
|
regs.$(OBJ): regs.c
|
|
regvals.$(OBJ): regvals.c
|
|
sync.$(OBJ): sync.c sync.h
|