nasm/Makefile.in

251 lines
8 KiB
Makefile
Raw Normal View History

2002-04-30 20:58:18 +00:00
# $Id$
2002-04-30 20:52:49 +00: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.
top_srcdir = @top_srcdir@
2002-04-30 20:58:18 +00:00
srcdir = @srcdir@
VPATH = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
mandir = @mandir@
2002-04-30 20:52:49 +00:00
2002-04-30 20:58:18 +00:00
CC = @CC@
CFLAGS = @CFLAGS@
BUILD_CFLAGS = $(CFLAGS) @DEFS@
INTERNAL_CFLAGS = -I$(srcdir) -I.
ALL_CFLAGS = $(BUILD_CFLAGS) $(INTERNAL_CFLAGS)
2002-04-30 20:58:18 +00:00
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
PERL = perl
2002-04-30 20:52:49 +00:00
2002-04-30 20:58:18 +00:00
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
2002-04-30 20:52:49 +00:00
2002-04-30 20:58:18 +00:00
NROFF = @NROFF@
2002-04-30 20:57:38 +00:00
# Binary suffixes
O = @OBJEXT@
X = @EXEEXT@
.SUFFIXES: .c .i .s .$(O) .1 .man
2002-04-30 20:58:18 +00:00
.PHONY: all doc rdf install clean distclean cleaner spotless install_rdf
2002-04-30 21:09:12 +00:00
.PHONY: install_doc everything install_everything strip perlreq dist
2002-04-30 20:57:59 +00:00
.c.$(O):
$(CC) -c $(ALL_CFLAGS) -o $@ $<
2002-04-30 20:58:18 +00:00
.c.s:
$(CC) -S $(ALL_CFLAGS) -o $@ $<
2002-04-30 20:58:18 +00:00
.c.i:
$(CC) -E $(ALL_CFLAGS) -o $@ $<
2002-04-30 20:52:49 +00:00
2002-04-30 20:57:59 +00:00
.1.man:
$(NROFF) -man $< > $@
NASM = nasm.$(O) nasmlib.$(O) float.$(O) insnsa.$(O) assemble.$(O) \
labels.$(O) parser.$(O) outform.$(O) output/outbin.$(O) \
2007-04-28 06:18:48 +00:00
output/outaout.$(O) output/outcoff.$(O) \
output/outelf32.$(O) output/outelf64.$(O) \
output/outobj.$(O) output/outas86.$(O) output/outrdf2.$(O) \
output/outdbg.$(O) output/outieee.$(O) output/outmacho.$(O) \
preproc.$(O) listing.$(O) eval.$(O)
2002-04-30 20:52:49 +00:00
NDISASM = ndisasm.$(O) disasm.$(O) sync.$(O) nasmlib.$(O) insnsd.$(O)
2002-04-30 20:52:49 +00:00
all: nasm$(X) ndisasm$(X) nasm.man ndisasm.man
cd rdoff && $(MAKE) all
2002-04-30 20:52:49 +00:00
nasm$(X): $(NASM)
$(CC) $(LDFLAGS) -o nasm$(X) $(NASM) $(LIBS)
ndisasm$(X): $(NDISASM)
$(CC) $(LDFLAGS) -o ndisasm$(X) $(NDISASM) $(LIBS)
2002-04-30 20:54:13 +00:00
# These source files are automagically generated from a single
2002-04-30 20:52:49 +00: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-04-30 20:58:18 +00:00
insnsa.c: insns.dat insns.pl
$(PERL) $(srcdir)/insns.pl -a $(srcdir)/insns.dat
2002-04-30 20:58:18 +00:00
insnsd.c: insns.dat insns.pl
$(PERL) $(srcdir)/insns.pl -d $(srcdir)/insns.dat
2002-04-30 20:58:18 +00:00
insnsi.h: insns.dat insns.pl
$(PERL) $(srcdir)/insns.pl -i $(srcdir)/insns.dat
2002-04-30 20:58:18 +00:00
insnsn.c: insns.dat insns.pl
$(PERL) $(srcdir)/insns.pl -n $(srcdir)/insns.dat
2002-04-30 20:52:49 +00:00
# These files contains all the standard macros that are derived from
# the version number.
version.h: version version.pl
$(PERL) $(srcdir)/version.pl h < $(srcdir)/version > version.h
version.mac: version version.pl
$(PERL) $(srcdir)/version.pl mac < $(srcdir)/version > version.mac
2002-04-30 20:52:49 +00: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.
macros.c: macros.pl standard.mac version.mac
$(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-04-30 20:52:49 +00:00
2002-04-30 21:09:12 +00:00
# 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)
2002-04-30 21:09:12 +00:00
install: nasm$(X) ndisasm$(X)
$(INSTALL_PROGRAM) nasm$(X) $(INSTALLROOT)$(bindir)/nasm$(X)
$(INSTALL_PROGRAM) ndisasm$(X) $(INSTALLROOT)$(bindir)/ndisasm$(X)
2002-04-30 20:58:18 +00:00
$(INSTALL_DATA) $(srcdir)/nasm.1 $(INSTALLROOT)$(mandir)/man1/nasm.1
$(INSTALL_DATA) $(srcdir)/ndisasm.1 $(INSTALLROOT)$(mandir)/man1/ndisasm.1
2002-04-30 20:52:49 +00:00
clean:
rm -f *.$(O) *.s *.i
rm -f output/*.$(O) output/*.s output/*.i
rm -f nasm$(X) ndisasm$(X)
2002-04-30 20:58:18 +00:00
cd rdoff && $(MAKE) clean
2002-04-30 20:52:49 +00:00
2002-04-30 20:54:58 +00:00
distclean: clean
rm -f config.h config.log config.status
rm -f Makefile *~ *.bak *.lst *.bin
rm -f output/*~ output/*.bak
rm -f test/*.lst test/*.bin test/*.$(O) test/*.bin
rm -rf autom4te*.cache
2002-04-30 20:58:18 +00:00
cd rdoff && $(MAKE) distclean
2002-04-30 20:54:58 +00:00
cleaner: clean
rm -f $(PERLREQ) *.man nasm.spec
2002-04-30 20:58:18 +00:00
cd doc && $(MAKE) clean
2002-04-30 20:54:58 +00:00
spotless: distclean cleaner
2002-09-13 00:25:44 +00:00
rm -f doc/Makefile doc/*~ doc/*.bak
2002-04-30 20:52:49 +00:00
2002-04-30 21:09:12 +00:00
strip:
strip --strip-unneeded nasm$(X) ndisasm$(X)
2002-04-30 21:09:12 +00:00
2002-04-30 20:52:49 +00:00
rdf:
2002-04-30 20:58:18 +00:00
cd rdoff && $(MAKE)
2002-04-30 20:52:49 +00:00
rdf_install install_rdf:
2002-04-30 20:58:18 +00: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
dist: spotless perlreq spec
autoheader
2002-04-30 21:09:12 +00:00
autoconf
rm -rf ./autom4te*.cache
tar: dist
tar cvjf ../nasm-`cat version`-`date +%Y%m%d`.tar.bz2 ../`./nasm-dir`
spec: nasm.spec
nasm.spec: nasm.spec.in version version.pl
sed -e s/@@VERSION@@/`cat $(srcdir)/version`/g \
-e s/@@ID@@/`$(PERL) $(srcdir)/version.pl id < $(srcdir)/version`/g \
< nasm.spec.in > nasm.spec
splint:
splint -weak *.c
#
# 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 --#
2007-05-30 18:30:18 +00:00
assemble.$(O): assemble.c preproc.h insns.h regs.h regflags.c config.h \
version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
2007-05-29 21:44:55 +00:00
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
float.$(O): float.c regs.h config.h version.h nasm.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
2007-05-29 21:44:55 +00:00
labels.$(O): labels.c regs.h config.h version.h nasmlib.h nasm.h
listing.$(O): listing.c regs.h config.h version.h nasmlib.h nasm.h listing.h
macros.$(O): macros.c
2005-01-14 23:05:31 +00: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 \
2007-05-29 21:44:55 +00:00
outform.h config.h version.h nasmlib.h nasm.h assemble.h insnsi.h listing.h
nasmlib.$(O): nasmlib.c insns.h regs.h config.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 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
output/outaout.$(O): output/outaout.c regs.h outform.h config.h version.h \
nasmlib.h nasm.h
output/outas86.$(O): output/outas86.c regs.h outform.h config.h version.h \
nasmlib.h nasm.h
2005-01-14 23:05:31 +00:00
output/outbin.$(O): output/outbin.c labels.h eval.h regs.h outform.h \
2007-05-29 21:44:55 +00:00
config.h version.h nasmlib.h nasm.h
output/outcoff.$(O): output/outcoff.c regs.h outform.h config.h version.h \
nasmlib.h nasm.h
output/outdbg.$(O): output/outdbg.c regs.h outform.h config.h version.h \
nasmlib.h nasm.h
output/outelf32.$(O): output/outelf32.c regs.h outform.h config.h version.h \
nasmlib.h nasm.h
output/outelf64.$(O): output/outelf64.c regs.h outform.h config.h version.h \
nasmlib.h nasm.h
output/outieee.$(O): output/outieee.c regs.h outform.h config.h version.h \
nasmlib.h nasm.h
output/outmacho.$(O): output/outmacho.c compiler.h regs.h outform.h config.h \
2005-01-14 23:05:31 +00:00
version.h nasmlib.h nasm.h
2007-05-29 21:44:55 +00:00
output/outobj.$(O): output/outobj.c regs.h outform.h config.h version.h \
nasmlib.h nasm.h
output/outrdf.$(O): output/outrdf.c regs.h outform.h config.h version.h \
nasmlib.h nasm.h
2005-01-14 23:05:31 +00:00
output/outrdf2.$(O): output/outrdf2.c rdoff/rdoff.h regs.h outform.h \
2007-05-29 21:44:55 +00:00
config.h version.h nasmlib.h nasm.h
parser.$(O): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
version.h nasmlib.h nasm.h insnsi.h
preproc.$(O): preproc.c macros.c regs.h config.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