mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-27 08:10:07 +08:00
16b0a33cea
We have a lot of enumerations; by declaring fields as such, we make it easier when debugging, since the debugger can display the enumerations in cleartext. However, make sure exceptional values (like -1) are included in the enumeration, since the compiler otherwise may not include it in the valid range of the enumeration.
149 lines
5.5 KiB
Makefile
149 lines
5.5 KiB
Makefile
# 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
|
|
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
|
|
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 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 \
|
|
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
|