nasm/Mkfiles/Makefile.dj
H. Peter Anvin 232badbbbc This is the "megapatch":
a) Automatically generate dependencies for all Makefiles;
b) Move register definitions to a separate .dat file;
c) Add support for "unimplemented but there in theory" registers.
2002-06-06 02:41:20 +00:00

135 lines
4.7 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/outelf.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 insns.h assemble.h regvals.c nasm.h regs.h insnsi.h \
nasmlib.h version.h
disasm.o: 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.o: eval.c nasm.h regs.h labels.h insnsi.h nasmlib.h version.h eval.h
float.o: float.c nasm.h regs.h insnsi.h version.h
insnsa.o: insnsa.c insns.h nasm.h regs.h insnsi.h version.h
insnsd.o: insnsd.c insns.h nasm.h regs.h insnsi.h version.h
insnsn.o: insnsn.c
labels.o: labels.c nasm.h regs.h insnsi.h nasmlib.h version.h
listing.o: listing.c listing.h nasm.h regs.h insnsi.h nasmlib.h version.h
macros.o: macros.c
names.o: names.c regs.c insnsn.c
nasm.o: 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.o: nasmlib.c regs.c names.c nasm.h regs.h insnsn.c insnsi.h \
nasmlib.h version.h
ndisasm.o: ndisasm.c insns.h sync.h nasm.h disasm.h regs.h insnsi.h \
nasmlib.h version.h
outform.o: outform.c outform.h nasm.h regs.h insnsi.h version.h
output/outaout.o: output/outaout.c outform.h nasm.h regs.h insnsi.h \
nasmlib.h version.h
output/outas86.o: output/outas86.c outform.h nasm.h regs.h insnsi.h \
nasmlib.h version.h
output/outbin.o: output/outbin.c outform.h nasm.h regs.h insnsi.h nasmlib.h \
version.h
output/outcoff.o: output/outcoff.c outform.h nasm.h regs.h insnsi.h \
nasmlib.h version.h
output/outdbg.o: output/outdbg.c outform.h nasm.h regs.h insnsi.h nasmlib.h \
version.h
output/outelf.o: output/outelf.c outform.h nasm.h regs.h insnsi.h nasmlib.h \
version.h
output/outieee.o: output/outieee.c outform.h nasm.h regs.h insnsi.h \
nasmlib.h version.h
output/outobj.o: output/outobj.c outform.h nasm.h regs.h insnsi.h nasmlib.h \
version.h
output/outrdf.o: output/outrdf.c outform.h nasm.h regs.h insnsi.h nasmlib.h \
version.h
output/outrdf2.o: output/outrdf2.c outform.h nasm.h regs.h insnsi.h \
nasmlib.h version.h
parser.o: parser.c parser.h nasm.h regs.h insnsi.h regflags.c float.h \
nasmlib.h version.h
preproc.o: preproc.c nasm.h macros.c regs.h insnsi.h nasmlib.h version.h
regdis.o: regdis.c
regflags.o: regflags.c
regs.o: regs.c
regvals.o: regvals.c
sync.o: sync.c sync.h