Make the perfect hash generator an includable module
[nasm/autotest.git] / Makefile.in
blobb0f661bd356a8ac9f6f376222024208a8738f250
1 # $Id$
3 # Auto-configuring Makefile for the Netwide Assembler.
5 # The Netwide Assembler is copyright (C) 1996 Simon Tatham and
6 # Julian Hall. All rights reserved. The software is
7 # redistributable under the licence given in the file "Licence"
8 # distributed in the NASM archive.
10 top_srcdir = @top_srcdir@
11 srcdir = @srcdir@
12 VPATH = @srcdir@
13 prefix = @prefix@
14 exec_prefix = @exec_prefix@
15 bindir = @bindir@
16 mandir = @mandir@
18 CC = @CC@
19 CFLAGS = @CFLAGS@
20 BUILD_CFLAGS = $(CFLAGS) @DEFS@
21 INTERNAL_CFLAGS = -I$(srcdir) -I.
22 ALL_CFLAGS = $(BUILD_CFLAGS) $(INTERNAL_CFLAGS)
23 LDFLAGS = @LDFLAGS@
24 LIBS = @LIBS@
25 PERL = perl -I$(srcdir)/perllib
27 INSTALL = @INSTALL@
28 INSTALL_PROGRAM = @INSTALL_PROGRAM@
29 INSTALL_DATA = @INSTALL_DATA@
31 NROFF = @NROFF@
33 # Binary suffixes
34 O = @OBJEXT@
35 X = @EXEEXT@
37 .SUFFIXES: .c .i .s .$(O) .1 .man
39 .PHONY: all doc rdf install clean distclean cleaner spotless install_rdf
40 .PHONY: install_doc everything install_everything strip perlreq dist
42 .c.$(O):
43 $(CC) -c $(ALL_CFLAGS) -o $@ $<
45 .c.s:
46 $(CC) -S $(ALL_CFLAGS) -o $@ $<
48 .c.i:
49 $(CC) -E $(ALL_CFLAGS) -o $@ $<
51 .1.man:
52 $(NROFF) -man $< > $@
54 NASM = nasm.$(O) nasmlib.$(O) float.$(O) insnsa.$(O) assemble.$(O) \
55 labels.$(O) parser.$(O) outform.$(O) output/outbin.$(O) \
56 output/outaout.$(O) output/outcoff.$(O) \
57 output/outelf32.$(O) output/outelf64.$(O) \
58 output/outobj.$(O) output/outas86.$(O) output/outrdf2.$(O) \
59 output/outdbg.$(O) output/outieee.$(O) output/outmacho.$(O) \
60 preproc.$(O) listing.$(O) eval.$(O)
62 NDISASM = ndisasm.$(O) disasm.$(O) sync.$(O) nasmlib.$(O) insnsd.$(O)
64 all: nasm$(X) ndisasm$(X) nasm.man ndisasm.man
65 cd rdoff && $(MAKE) all
67 nasm$(X): $(NASM)
68 $(CC) $(LDFLAGS) -o nasm$(X) $(NASM) $(LIBS)
70 ndisasm$(X): $(NDISASM)
71 $(CC) $(LDFLAGS) -o ndisasm$(X) $(NDISASM) $(LIBS)
73 # These source files are automagically generated from a single
74 # instruction-table file by a Perl script. They're distributed,
75 # though, so it isn't necessary to have Perl just to recompile NASM
76 # from the distribution.
78 insnsa.c: insns.dat insns.pl
79 $(PERL) $(srcdir)/insns.pl -a $(srcdir)/insns.dat
80 insnsd.c: insns.dat insns.pl
81 $(PERL) $(srcdir)/insns.pl -d $(srcdir)/insns.dat
82 insnsi.h: insns.dat insns.pl
83 $(PERL) $(srcdir)/insns.pl -i $(srcdir)/insns.dat
84 insnsn.c: insns.dat insns.pl
85 $(PERL) $(srcdir)/insns.pl -n $(srcdir)/insns.dat
87 # These files contains all the standard macros that are derived from
88 # the version number.
89 version.h: version version.pl
90 $(PERL) $(srcdir)/version.pl h < $(srcdir)/version > version.h
92 version.mac: version version.pl
93 $(PERL) $(srcdir)/version.pl mac < $(srcdir)/version > version.mac
95 # This source file is generated from the standard macros file
96 # `standard.mac' by another Perl script. Again, it's part of the
97 # standard distribution.
99 macros.c: macros.pl standard.mac version.mac
100 $(PERL) $(srcdir)/macros.pl $(srcdir)/standard.mac version.mac
102 # These source files are generated from regs.dat by yet another
103 # perl script.
104 regs.c: regs.dat regs.pl
105 $(PERL) $(srcdir)/regs.pl c $(srcdir)/regs.dat > regs.c
106 regflags.c: regs.dat regs.pl
107 $(PERL) $(srcdir)/regs.pl fc $(srcdir)/regs.dat > regflags.c
108 regdis.c: regs.dat regs.pl
109 $(PERL) $(srcdir)/regs.pl dc $(srcdir)/regs.dat > regdis.c
110 regvals.c: regs.dat regs.pl
111 $(PERL) $(srcdir)/regs.pl vc $(srcdir)/regs.dat > regvals.c
112 regs.h: regs.dat regs.pl
113 $(PERL) $(srcdir)/regs.pl h $(srcdir)/regs.dat > regs.h
115 # This target generates all files that require perl.
116 # This allows easier generation of distribution (see dist target).
117 PERLREQ = macros.c insnsa.c insnsd.c insnsi.h insnsn.c \
118 regs.c regs.h regflags.c regdis.c regvals.c \
119 version.h version.mac
120 perlreq: $(PERLREQ)
122 install: nasm$(X) ndisasm$(X)
123 $(INSTALL_PROGRAM) nasm$(X) $(INSTALLROOT)$(bindir)/nasm$(X)
124 $(INSTALL_PROGRAM) ndisasm$(X) $(INSTALLROOT)$(bindir)/ndisasm$(X)
125 $(INSTALL_DATA) $(srcdir)/nasm.1 $(INSTALLROOT)$(mandir)/man1/nasm.1
126 $(INSTALL_DATA) $(srcdir)/ndisasm.1 $(INSTALLROOT)$(mandir)/man1/ndisasm.1
128 clean:
129 rm -f *.$(O) *.s *.i
130 rm -f output/*.$(O) output/*.s output/*.i
131 rm -f nasm$(X) ndisasm$(X)
132 cd rdoff && $(MAKE) clean
134 distclean: clean
135 rm -f config.h config.log config.status
136 rm -f Makefile *~ *.bak *.lst *.bin
137 rm -f output/*~ output/*.bak
138 rm -f test/*.lst test/*.bin test/*.$(O) test/*.bin
139 rm -rf autom4te*.cache
140 cd rdoff && $(MAKE) distclean
142 cleaner: clean
143 rm -f $(PERLREQ) *.man nasm.spec
144 cd doc && $(MAKE) clean
146 spotless: distclean cleaner
147 rm -f doc/Makefile doc/*~ doc/*.bak
149 strip:
150 strip --strip-unneeded nasm$(X) ndisasm$(X)
152 rdf:
153 cd rdoff && $(MAKE)
155 rdf_install install_rdf:
156 cd rdoff && $(MAKE) install
158 doc:
159 cd doc && $(MAKE) all
161 doc_install install_doc:
162 cd doc && $(MAKE) install
164 everything: all doc rdf
166 install_everything: everything install install_doc install_rdf
168 dist: spotless perlreq spec
169 autoheader
170 autoconf
171 rm -rf ./autom4te*.cache
173 tar: dist
174 tar cvjf ../nasm-`cat version`-`date +%Y%m%d`.tar.bz2 ../`./nasm-dir`
176 spec: nasm.spec
178 nasm.spec: nasm.spec.in version version.pl
179 sed -e s/@@VERSION@@/`cat $(srcdir)/version`/g \
180 -e s/@@ID@@/`$(PERL) $(srcdir)/version.pl id < $(srcdir)/version`/g \
181 < nasm.spec.in > nasm.spec
183 splint:
184 splint -weak *.c
187 # This build dependencies in *ALL* makefiles. Partially for that reason,
188 # it's expected to be invoked manually.
190 alldeps: perlreq
191 $(PERL) mkdep.pl -M Makefile.in Mkfiles/Makefile.* -- \
192 . output
193 ./config.status
195 #-- Magic hints to mkdep.pl --#
196 # @object-ending: ".$(O)"
197 # @path-separator: "/"
198 #-- Everything below is generated by mkdep.pl - do not edit --#
199 assemble.$(O): assemble.c preproc.h insns.h regs.h regflags.c config.h \
200 version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
201 disasm.$(O): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
202 version.h nasm.h insnsn.c names.c insnsi.h disasm.h
203 eval.$(O): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h nasm.h
204 float.$(O): float.c regs.h config.h version.h nasm.h
205 insnsa.$(O): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
206 insnsd.$(O): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
207 insnsn.$(O): insnsn.c
208 labels.$(O): labels.c regs.h config.h version.h nasmlib.h nasm.h
209 listing.$(O): listing.c regs.h config.h version.h nasmlib.h nasm.h listing.h
210 macros.$(O): macros.c
211 names.$(O): names.c regs.c insnsn.c
212 nasm.$(O): nasm.c labels.h preproc.h insns.h parser.h eval.h regs.h \
213 outform.h config.h version.h nasmlib.h nasm.h assemble.h insnsi.h listing.h
214 nasmlib.$(O): nasmlib.c insns.h regs.h config.h regs.c version.h nasmlib.h \
215 nasm.h insnsn.c names.c insnsi.h
216 ndisasm.$(O): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
217 nasm.h insnsi.h disasm.h
218 outform.$(O): outform.c regs.h config.h outform.h version.h nasm.h
219 output/outaout.$(O): output/outaout.c regs.h outform.h config.h version.h \
220 nasmlib.h nasm.h
221 output/outas86.$(O): output/outas86.c regs.h outform.h config.h version.h \
222 nasmlib.h nasm.h
223 output/outbin.$(O): output/outbin.c labels.h eval.h regs.h outform.h \
224 config.h version.h nasmlib.h nasm.h
225 output/outcoff.$(O): output/outcoff.c regs.h outform.h config.h version.h \
226 nasmlib.h nasm.h
227 output/outdbg.$(O): output/outdbg.c regs.h outform.h config.h version.h \
228 nasmlib.h nasm.h
229 output/outelf32.$(O): output/outelf32.c regs.h outform.h config.h version.h \
230 nasmlib.h nasm.h
231 output/outelf64.$(O): output/outelf64.c regs.h outform.h config.h version.h \
232 nasmlib.h nasm.h
233 output/outieee.$(O): output/outieee.c regs.h outform.h config.h version.h \
234 nasmlib.h nasm.h
235 output/outmacho.$(O): output/outmacho.c compiler.h regs.h outform.h config.h \
236 version.h nasmlib.h nasm.h
237 output/outobj.$(O): output/outobj.c regs.h outform.h config.h version.h \
238 nasmlib.h nasm.h
239 output/outrdf.$(O): output/outrdf.c regs.h outform.h config.h version.h \
240 nasmlib.h nasm.h
241 output/outrdf2.$(O): output/outrdf2.c rdoff/rdoff.h regs.h outform.h \
242 config.h version.h nasmlib.h nasm.h
243 parser.$(O): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
244 version.h nasmlib.h nasm.h insnsi.h
245 preproc.$(O): preproc.c macros.c regs.h config.h version.h nasmlib.h nasm.h
246 regdis.$(O): regdis.c
247 regflags.$(O): regflags.c
248 regs.$(O): regs.c
249 regvals.$(O): regvals.c
250 sync.$(O): sync.c sync.h