2002-05-01 04:58:18 +08:00
|
|
|
# $Id$
|
2002-05-01 04:52:49 +08:00
|
|
|
#
|
|
|
|
# Auto-configuring 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.
|
|
|
|
|
2002-05-01 04:58:18 +08:00
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
prefix = @prefix@
|
|
|
|
exec_prefix = @exec_prefix@
|
|
|
|
bindir = @bindir@
|
|
|
|
mandir = @mandir@
|
2002-05-01 04:52:49 +08:00
|
|
|
|
2002-05-01 04:58:18 +08:00
|
|
|
CC = @CC@
|
2003-07-10 03:11:10 +08:00
|
|
|
CFLAGS = @CFLAGS@ @GCCFLAGS@ @DEFS@ -I$(srcdir) -I.
|
2002-05-01 04:58:18 +08:00
|
|
|
LDFLAGS = @LDFLAGS@
|
2002-05-27 07:55:34 +08:00
|
|
|
LIBS = @LIBS@
|
2002-06-06 10:41:20 +08:00
|
|
|
PERL = perl
|
2002-05-01 04:52:49 +08:00
|
|
|
|
2002-05-01 04:58:18 +08:00
|
|
|
INSTALL = @INSTALL@
|
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
2002-05-01 04:52:49 +08:00
|
|
|
|
2002-05-01 04:58:18 +08:00
|
|
|
NROFF = @NROFF@
|
2002-05-01 04:57:38 +08:00
|
|
|
|
2002-05-19 10:02:20 +08:00
|
|
|
# Binary suffixes
|
|
|
|
O = @OBJEXT@
|
|
|
|
X = @EXEEXT@
|
|
|
|
|
|
|
|
.SUFFIXES: .c .i .s .$(O) .1 .man
|
2002-05-01 04:58:18 +08:00
|
|
|
|
|
|
|
.PHONY: all doc rdf install clean distclean cleaner spotless install_rdf
|
2002-05-01 05:09:12 +08:00
|
|
|
.PHONY: install_doc everything install_everything strip perlreq dist
|
2002-05-01 04:57:59 +08:00
|
|
|
|
2002-05-19 10:02:20 +08:00
|
|
|
.c.$(O):
|
2002-05-01 04:58:18 +08:00
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
.c.s:
|
|
|
|
$(CC) -S $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
.c.i:
|
|
|
|
$(CC) -E $(CFLAGS) -o $@ $<
|
2002-05-01 04:52:49 +08:00
|
|
|
|
2002-05-01 04:57:59 +08:00
|
|
|
.1.man:
|
|
|
|
$(NROFF) -man $< > $@
|
|
|
|
|
2002-06-06 10:41:20 +08:00
|
|
|
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/outrdf2.$(O) \
|
|
|
|
output/outdbg.$(O) output/outieee.$(O) \
|
|
|
|
preproc.$(O) listing.$(O) eval.$(O)
|
2002-05-01 04:52:49 +08:00
|
|
|
|
2002-05-19 10:02:20 +08:00
|
|
|
NDISASM = ndisasm.$(O) disasm.$(O) sync.$(O) nasmlib.$(O) insnsd.$(O)
|
2002-05-01 04:52:49 +08:00
|
|
|
|
2002-05-19 10:02:20 +08:00
|
|
|
all: nasm$(X) ndisasm$(X) nasm.man ndisasm.man
|
2002-05-04 08:15:02 +08:00
|
|
|
cd rdoff && $(MAKE) all
|
2002-05-01 04:52:49 +08:00
|
|
|
|
2002-05-19 10:02:20 +08:00
|
|
|
nasm$(X): $(NASM)
|
2002-05-27 07:55:34 +08:00
|
|
|
$(CC) $(LDFLAGS) -o nasm$(X) $(NASM) $(LIBS)
|
2002-05-19 10:02:20 +08:00
|
|
|
|
|
|
|
ndisasm$(X): $(NDISASM)
|
2002-05-27 07:55:34 +08:00
|
|
|
$(CC) $(LDFLAGS) -o ndisasm$(X) $(NDISASM) $(LIBS)
|
2002-05-19 10:02:20 +08:00
|
|
|
|
2002-05-01 04:54:13 +08:00
|
|
|
# These source files are automagically generated from a single
|
2002-05-01 04:52:49 +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:58:18 +08:00
|
|
|
insnsa.c: insns.dat insns.pl
|
2002-06-06 10:41:20 +08:00
|
|
|
$(PERL) $(srcdir)/insns.pl -a $(srcdir)/insns.dat
|
2002-05-01 04:58:18 +08:00
|
|
|
insnsd.c: insns.dat insns.pl
|
2002-06-06 10:41:20 +08:00
|
|
|
$(PERL) $(srcdir)/insns.pl -d $(srcdir)/insns.dat
|
2002-05-01 04:58:18 +08:00
|
|
|
insnsi.h: insns.dat insns.pl
|
2002-06-06 10:41:20 +08:00
|
|
|
$(PERL) $(srcdir)/insns.pl -i $(srcdir)/insns.dat
|
2002-05-01 04:58:18 +08:00
|
|
|
insnsn.c: insns.dat insns.pl
|
2002-06-06 10:41:20 +08:00
|
|
|
$(PERL) $(srcdir)/insns.pl -n $(srcdir)/insns.dat
|
2002-05-01 04:52:49 +08:00
|
|
|
|
2002-05-04 11:57:52 +08:00
|
|
|
# These files contains all the standard macros that are derived from
|
|
|
|
# the version number.
|
|
|
|
version.h: version version.pl
|
2002-06-06 10:41:20 +08:00
|
|
|
$(PERL) $(srcdir)/version.pl h < $(srcdir)/version > version.h
|
2002-05-04 11:57:52 +08:00
|
|
|
|
|
|
|
version.mac: version version.pl
|
2002-06-06 10:41:20 +08:00
|
|
|
$(PERL) $(srcdir)/version.pl mac < $(srcdir)/version > version.mac
|
2002-05-04 11:57:52 +08:00
|
|
|
|
2002-05-01 04:52:49 +08:00
|
|
|
# This source file is generated from the standard macros file
|
|
|
|
# `standard.mac' by another Perl script. Again, it's part of the
|
|
|
|
# standard distribution.
|
|
|
|
|
2002-05-04 11:57:52 +08:00
|
|
|
macros.c: macros.pl standard.mac version.mac
|
2002-06-06 10:41:20 +08:00
|
|
|
$(PERL) $(srcdir)/macros.pl $(srcdir)/standard.mac version.mac
|
|
|
|
|
|
|
|
# These source files are generated from regs.dat by yet another
|
|
|
|
# perl script.
|
|
|
|
regs.c: regs.dat regs.pl
|
|
|
|
$(PERL) $(srcdir)/regs.pl c $(srcdir)/regs.dat > regs.c
|
|
|
|
regflags.c: regs.dat regs.pl
|
|
|
|
$(PERL) $(srcdir)/regs.pl fc $(srcdir)/regs.dat > regflags.c
|
|
|
|
regdis.c: regs.dat regs.pl
|
|
|
|
$(PERL) $(srcdir)/regs.pl dc $(srcdir)/regs.dat > regdis.c
|
|
|
|
regvals.c: regs.dat regs.pl
|
|
|
|
$(PERL) $(srcdir)/regs.pl vc $(srcdir)/regs.dat > regvals.c
|
|
|
|
regs.h: regs.dat regs.pl
|
|
|
|
$(PERL) $(srcdir)/regs.pl h $(srcdir)/regs.dat > regs.h
|
2002-05-01 04:52:49 +08:00
|
|
|
|
2002-05-01 05:09:12 +08:00
|
|
|
# This target generates all files that require perl.
|
|
|
|
# This allows easier generation of distribution (see dist target).
|
2002-06-06 10:41:20 +08:00
|
|
|
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
|
2002-05-19 09:59:37 +08:00
|
|
|
perlreq: $(PERLREQ)
|
2002-05-01 05:09:12 +08:00
|
|
|
|
2002-05-19 10:02:20 +08:00
|
|
|
install: nasm$(X) ndisasm$(X)
|
|
|
|
$(INSTALL_PROGRAM) nasm$(X) $(INSTALLROOT)$(bindir)/nasm$(X)
|
|
|
|
$(INSTALL_PROGRAM) ndisasm$(X) $(INSTALLROOT)$(bindir)/ndisasm$(X)
|
2002-05-01 04:58:18 +08:00
|
|
|
$(INSTALL_DATA) $(srcdir)/nasm.1 $(INSTALLROOT)$(mandir)/man1/nasm.1
|
|
|
|
$(INSTALL_DATA) $(srcdir)/ndisasm.1 $(INSTALLROOT)$(mandir)/man1/ndisasm.1
|
2002-05-01 04:52:49 +08:00
|
|
|
|
|
|
|
clean:
|
2002-05-19 10:02:20 +08:00
|
|
|
rm -f *.$(O) *.s *.i
|
|
|
|
rm -f output/*.$(O) output/*.s output/*.i
|
|
|
|
rm -f nasm$(X) ndisasm$(X)
|
2002-05-01 04:58:18 +08:00
|
|
|
cd rdoff && $(MAKE) clean
|
2002-05-01 04:52:49 +08:00
|
|
|
|
2002-05-01 04:54:58 +08:00
|
|
|
distclean: clean
|
2003-09-13 06:30:50 +08:00
|
|
|
rm -f config.h config.log config.status
|
|
|
|
rm -f Makefile *~ *.bak *.lst *.bin
|
2002-05-18 00:26:33 +08:00
|
|
|
rm -f output/*~ output/*.bak
|
2002-05-19 10:02:20 +08:00
|
|
|
rm -f test/*.lst test/*.bin test/*.$(O) test/*.bin
|
|
|
|
rm -rf autom4te*.cache
|
2002-05-01 04:58:18 +08:00
|
|
|
cd rdoff && $(MAKE) distclean
|
2002-05-01 04:54:58 +08:00
|
|
|
|
|
|
|
cleaner: clean
|
2002-05-19 09:59:37 +08:00
|
|
|
rm -f $(PERLREQ) *.man nasm.spec
|
2002-05-01 04:58:18 +08:00
|
|
|
cd doc && $(MAKE) clean
|
2002-05-01 04:54:58 +08:00
|
|
|
|
|
|
|
spotless: distclean cleaner
|
2002-09-13 08:25:44 +08:00
|
|
|
rm -f doc/Makefile doc/*~ doc/*.bak
|
2002-05-01 04:52:49 +08:00
|
|
|
|
2002-05-01 05:09:12 +08:00
|
|
|
strip:
|
2002-05-19 10:02:20 +08:00
|
|
|
strip --strip-unneeded nasm$(X) ndisasm$(X)
|
2002-05-01 05:09:12 +08:00
|
|
|
|
2002-05-01 04:52:49 +08:00
|
|
|
rdf:
|
2002-05-01 04:58:18 +08:00
|
|
|
cd rdoff && $(MAKE)
|
2002-05-01 04:52:49 +08:00
|
|
|
|
|
|
|
rdf_install install_rdf:
|
2002-05-01 04:58:18 +08:00
|
|
|
cd rdoff && $(MAKE) install
|
|
|
|
|
|
|
|
doc:
|
|
|
|
cd doc && $(MAKE) all
|
|
|
|
|
|
|
|
doc_install install_doc:
|
|
|
|
cd doc && $(MAKE) install
|
|
|
|
|
|
|
|
everything: all doc rdf
|
|
|
|
|
|
|
|
install_everything: everything install install_doc install_rdf
|
|
|
|
|
2003-08-30 03:56:40 +08:00
|
|
|
dist: spotless perlreq spec
|
2003-09-01 12:19:37 +08:00
|
|
|
autoheader
|
2002-05-01 05:09:12 +08:00
|
|
|
autoconf
|
2002-05-19 09:57:54 +08:00
|
|
|
rm -rf ./autom4te*.cache
|
2002-05-06 07:48:07 +08:00
|
|
|
|
|
|
|
tar: dist
|
2002-05-04 11:57:52 +08:00
|
|
|
tar cvjf ../nasm-`cat version`-`date +%Y%m%d`.tar.bz2 ../`./nasm-dir`
|
2002-05-04 13:14:03 +08:00
|
|
|
|
2002-05-21 10:46:45 +08:00
|
|
|
spec: nasm.spec
|
|
|
|
|
2002-05-21 10:47:08 +08:00
|
|
|
nasm.spec: nasm.spec.in version version.pl
|
2002-05-21 10:28:51 +08:00
|
|
|
sed -e s/@@VERSION@@/`cat $(srcdir)/version`/g \
|
2002-05-21 10:46:45 +08:00
|
|
|
-e s/@@ID@@/`$(PERL) $(srcdir)/version.pl id < $(srcdir)/version`/g \
|
2002-05-21 10:28:51 +08:00
|
|
|
< nasm.spec.in > nasm.spec
|
2002-06-06 10:41:20 +08:00
|
|
|
|
2004-12-17 09:06:10 +08:00
|
|
|
splint:
|
|
|
|
splint -weak *.c
|
|
|
|
|
2002-06-06 10:41:20 +08:00
|
|
|
#
|
|
|
|
# This build dependencies in *ALL* makefiles. Partially for that reason,
|
|
|
|
# it's expected to be invoked manually.
|
|
|
|
#
|
|
|
|
alldeps: perlreq
|
|
|
|
$(PERL) mkdep.pl -M Makefile.in Mkfiles/Makefile.* -- \
|
|
|
|
. output
|
|
|
|
./config.status
|
|
|
|
|
|
|
|
#-- Magic hints to mkdep.pl --#
|
|
|
|
# @object-ending: ".$(O)"
|
|
|
|
# @path-separator: "/"
|
|
|
|
#-- Everything below is generated by mkdep.pl - do not edit --#
|
2005-01-15 07:05:31 +08:00
|
|
|
assemble.$(O): assemble.c preproc.h insns.h regs.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 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
|
2002-06-06 10:41:20 +08:00
|
|
|
insnsn.$(O): insnsn.c
|
2005-01-15 07:05:31 +08:00
|
|
|
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
|
2002-06-06 10:41:20 +08:00
|
|
|
macros.$(O): macros.c
|
2005-01-15 07:05:31 +08:00
|
|
|
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/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
|
2002-06-06 10:41:20 +08:00
|
|
|
regdis.$(O): regdis.c
|
|
|
|
regflags.$(O): regflags.c
|
|
|
|
regs.$(O): regs.c
|
|
|
|
regvals.$(O): regvals.c
|
|
|
|
sync.$(O): sync.c sync.h
|