mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-02-05 16:51:27 +08:00
45 lines
1.4 KiB
Makefile
45 lines
1.4 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
|
|
|