mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-02-23 17:29:23 +08:00
162 lines
5.2 KiB
Makefile
162 lines
5.2 KiB
Makefile
# Unix fall-back makefile for the Netwide Assembler. For use if
|
|
# `configure' fails to generate a workable Makefile.
|
|
#
|
|
# If `configure' doesn't work for you, *please* inform
|
|
# <nasm-bugs@lists.sourceforge.net>
|
|
#
|
|
# The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
|
# Julian Hall. All rights reserved. The software is
|
|
# redistributable under the GNU Lesser General Public License.
|
|
|
|
# You may need to adjust these values.
|
|
|
|
prefix = /usr/local
|
|
CC = cc
|
|
CFLAGS = -O -I.
|
|
PERL = perl
|
|
|
|
INSTALL = install -c
|
|
INSTALL_PROGRAM = $(INSTALL)
|
|
INSTALL_DATA = $(INSTALL) -m 644
|
|
|
|
exec_prefix = $(prefix)
|
|
bindir = $(exec_prefix)/bin
|
|
mandir = $(prefix)/man
|
|
|
|
# You _shouldn't_ need to adjust anything below this line.
|
|
|
|
.SUFFIXES: .c .o .h .mac .pl
|
|
|
|
.c.o:
|
|
$(CC) -c $(CFLAGS) -o $*.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/outdbg.o preproc.o listing.o \
|
|
eval.o output/outrdf2.o output/outieee.o output/outmacho.o
|
|
|
|
NDISASM = ndisasm.o disasm.o sync.o nasmlib.o insnsd.o
|
|
|
|
all: nasm ndisasm
|
|
|
|
nasm: $(NASM)
|
|
$(CC) -o nasm $(NASM)
|
|
|
|
ndisasm: $(NDISASM)
|
|
$(CC) -o ndisasm $(NDISASM)
|
|
|
|
# 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
|
|
|
|
insnsa.c: insns.pl insns.dat
|
|
$(PERL) insns.pl -a insns.dat
|
|
|
|
insnsd.c: insns.pl insns.dat
|
|
$(PERL) insns.pl -d insns.dat
|
|
|
|
insnsi.h: insns.pl insns.dat
|
|
$(PERL) insns.pl -i insns.dat
|
|
|
|
insnsn.c: insns.pl insns.dat
|
|
$(PERL) insns.pl -n insns.dat
|
|
|
|
# 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
|
|
|
|
# This target generates all files that require perl.
|
|
# This allows easier generation of distribution (see dist target).
|
|
PERLREQ = macros.c insnsa.c insnsd.c insnsi.h insnsn.c \
|
|
regs.c regs.h regflags.c regdis.c regvals.c \
|
|
version.h version.mac
|
|
perlreq: $(PERLREQ)
|
|
|
|
install: nasm ndisasm
|
|
$(INSTALL_PROGRAM) nasm $(bindir)/nasm
|
|
$(INSTALL_PROGRAM) ndisasm $(bindir)/ndisasm
|
|
$(INSTALL_DATA) nasm.1 $(mandir)/man1/nasm.1
|
|
$(INSTALL_DATA) ndisasm.1 $(mandir)/man1/ndisasm.1
|
|
|
|
clean:
|
|
rm -f *.o nasm ndisasm
|
|
$(MAKE) -C rdoff clean
|
|
|
|
rdf:
|
|
$(MAKE) -C rdoff
|
|
|
|
rdf_install install_rdf:
|
|
$(MAKE) -C rdoff install
|
|
|
|
#-- 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 regs.h version.h nasmlib.h nasm.h \
|
|
regvals.c insnsi.h assemble.h
|
|
disasm.o: disasm.c insns.h sync.h regdis.c regs.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 version.h nasmlib.h nasm.h
|
|
float.o: float.c regs.h version.h nasm.h
|
|
insnsa.o: insnsa.c insns.h regs.h version.h nasm.h insnsi.h
|
|
insnsd.o: insnsd.c insns.h regs.h version.h nasm.h insnsi.h
|
|
insnsn.o: insnsn.c
|
|
labels.o: labels.c regs.h version.h nasmlib.h nasm.h
|
|
listing.o: listing.c regs.h version.h nasmlib.h nasm.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 regs.h outform.h \
|
|
version.h nasmlib.h nasm.h assemble.h insnsi.h listing.h
|
|
nasmlib.o: nasmlib.c insns.h regs.h regs.c version.h nasmlib.h nasm.h \
|
|
insnsn.c names.c insnsi.h
|
|
ndisasm.o: ndisasm.c insns.h sync.h regs.h version.h nasmlib.h nasm.h \
|
|
insnsi.h disasm.h
|
|
outform.o: outform.c regs.h outform.h version.h nasm.h
|
|
output/outaout.o: output/outaout.c regs.h outform.h version.h nasmlib.h \
|
|
nasm.h
|
|
output/outas86.o: output/outas86.c regs.h outform.h version.h nasmlib.h \
|
|
nasm.h
|
|
output/outbin.o: output/outbin.c labels.h eval.h regs.h outform.h version.h \
|
|
nasmlib.h nasm.h
|
|
output/outcoff.o: output/outcoff.c regs.h outform.h version.h nasmlib.h \
|
|
nasm.h
|
|
output/outdbg.o: output/outdbg.c regs.h outform.h version.h nasmlib.h nasm.h
|
|
output/outelf.o: output/outelf.c regs.h outform.h version.h nasmlib.h nasm.h
|
|
output/outieee.o: output/outieee.c regs.h outform.h version.h nasmlib.h \
|
|
nasm.h
|
|
output/outmacho.o: output/outmacho.c regs.h outform.h version.h nasmlib.h \
|
|
nasm.h
|
|
output/outobj.o: output/outobj.c regs.h outform.h version.h nasmlib.h nasm.h
|
|
output/outrdf.o: output/outrdf.c regs.h outform.h version.h nasmlib.h nasm.h
|
|
output/outrdf2.o: output/outrdf2.c rdoff/rdoff.h regs.h outform.h version.h \
|
|
nasmlib.h nasm.h
|
|
parser.o: parser.c insns.h parser.h float.h regs.h regflags.c version.h \
|
|
nasmlib.h nasm.h insnsi.h
|
|
preproc.o: preproc.c macros.c regs.h version.h nasmlib.h nasm.h
|
|
regdis.o: regdis.c
|
|
regflags.o: regflags.c
|
|
regs.o: regs.c
|
|
regvals.o: regvals.c
|
|
sync.o: sync.c sync.h
|