2002-05-01 04:53:16 +08:00
|
|
|
# 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.
|
|
|
|
|
2002-05-01 04:59:21 +08:00
|
|
|
CC = gcc -s
|
2002-05-01 04:53:16 +08:00
|
|
|
CFLAGS = -O2 -I.
|
|
|
|
|
|
|
|
# You _shouldn't_ need to adjust anything below this line.
|
|
|
|
|
|
|
|
.c.o:
|
|
|
|
$(CC) -c $(CFLAGS) $*.c
|
|
|
|
|
|
|
|
NASM = nasm.o nasmlib.o float.o insnsa.o assemble.o labels.o \
|
|
|
|
parser.o outform.o outbin.o outaout.o outcoff.o outelf.o \
|
|
|
|
outobj.o outas86.o outrdf.o outdbg.o preproc.o listing.o \
|
2002-05-01 04:57:19 +08:00
|
|
|
eval.o outrdf2.o zoutieee.o
|
2002-05-01 04:53:16 +08:00
|
|
|
|
|
|
|
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)
|
|
|
|
|
2002-05-01 04:56:19 +08:00
|
|
|
assemble.o: assemble.c nasm.h insnsi.h nasmlib.h assemble.h insns.h
|
|
|
|
disasm.o: disasm.c nasm.h insnsi.h disasm.h sync.h insns.h names.c insnsn.c
|
|
|
|
eval.o: eval.c eval.h nasm.h insnsi.h nasmlib.h
|
|
|
|
float.o: float.c nasm.h insnsi.h
|
|
|
|
insnsa.o: insnsa.c nasm.h insnsi.h insns.h
|
|
|
|
insnsd.o: insnsd.c nasm.h insnsi.h insns.h
|
|
|
|
labels.o: labels.c nasm.h insnsi.h nasmlib.h
|
|
|
|
listing.o: listing.c nasm.h insnsi.h nasmlib.h listing.h
|
|
|
|
nasm.o: nasm.c nasm.h insnsi.h nasmlib.h preproc.h parser.h assemble.h labels.h \
|
2002-05-01 04:53:16 +08:00
|
|
|
outform.h listing.h
|
2002-05-01 04:58:18 +08:00
|
|
|
nasmlib.o: nasmlib.c nasm.h insnsi.h nasmlib.h names.c insnsn.c
|
2002-05-01 04:56:19 +08:00
|
|
|
ndisasm.o: ndisasm.c nasm.h insnsi.h nasmlib.h sync.h disasm.h
|
|
|
|
outaout.o: outaout.c nasm.h insnsi.h nasmlib.h outform.h
|
|
|
|
outas86.o: outas86.c nasm.h insnsi.h nasmlib.h outform.h
|
|
|
|
outbin.o: outbin.c nasm.h insnsi.h nasmlib.h outform.h
|
|
|
|
outcoff.o: outcoff.c nasm.h insnsi.h nasmlib.h outform.h
|
|
|
|
outdbg.o: outdbg.c nasm.h insnsi.h nasmlib.h outform.h
|
|
|
|
outelf.o: outelf.c nasm.h insnsi.h nasmlib.h outform.h
|
|
|
|
outform.o: outform.c outform.h nasm.h insnsi.h
|
|
|
|
outobj.o: outobj.c nasm.h insnsi.h nasmlib.h outform.h
|
|
|
|
outrdf.o: outrdf.c nasm.h insnsi.h nasmlib.h outform.h
|
2002-05-01 04:57:19 +08:00
|
|
|
outrdf2.o: outrdf2.c nasm.h insnsi.h nasmlib.h outform.h
|
|
|
|
zoutieee.o: zoutieee.c nasm.h insnsi.h nasmlib.h outform.h
|
2002-05-01 04:56:19 +08:00
|
|
|
parser.o: parser.c nasm.h insnsi.h nasmlib.h parser.h float.h names.c insnsn.c
|
|
|
|
preproc.o: preproc.c nasm.h insnsi.h nasmlib.h macros.c
|
2002-05-01 04:53:16 +08:00
|
|
|
sync.o: sync.c sync.h
|
|
|
|
|
2002-05-01 04:56:19 +08:00
|
|
|
# These source files are automagically generated from a single
|
2002-05-01 04:53:16 +08:00
|
|
|
# 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.
|
|
|
|
|
2002-05-01 04:56:19 +08:00
|
|
|
insnsa.c insnsd.c insnsi.h insnsn.c: insns.dat insns.pl
|
2002-05-01 04:53:16 +08:00
|
|
|
perl insns.pl 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: standard.mac macros.pl
|
|
|
|
perl macros.pl standard.mac
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.o nasm ndisasm
|
|
|
|
|