Make nasm_malloc() et al available from inside ndisasm
[nasm.git] / Makefile.in
blob1a43f551c55a874cd8e6b5799d6f51c25ebc5ec8
2 # Auto-configuring Makefile for the Netwide Assembler.
4 # The Netwide Assembler is copyright (C) 1996 Simon Tatham and
5 # Julian Hall. All rights reserved. The software is
6 # redistributable under the licence given in the file "Licence"
7 # distributed in the NASM archive.
9 top_srcdir = @top_srcdir@
10 srcdir = @srcdir@
11 VPATH = @srcdir@
12 prefix = @prefix@
13 exec_prefix = @exec_prefix@
14 bindir = @bindir@
15 mandir = @mandir@
17 CC = @CC@
18 CFLAGS = @CFLAGS@
19 BUILD_CFLAGS = $(CFLAGS) @DEFS@
20 INTERNAL_CFLAGS = -I$(srcdir) -I.
21 ALL_CFLAGS = $(BUILD_CFLAGS) $(INTERNAL_CFLAGS)
22 LDFLAGS = @LDFLAGS@
23 LIBS = @LIBS@
24 PERL = perl -I$(srcdir)/perllib
26 INSTALL = @INSTALL@
27 INSTALL_PROGRAM = @INSTALL_PROGRAM@
28 INSTALL_DATA = @INSTALL_DATA@
30 NROFF = @NROFF@
32 # Binary suffixes
33 O = @OBJEXT@
34 X = @EXEEXT@
36 .SUFFIXES: .c .i .s .$(O) .1 .man
38 .PHONY: all doc rdf install clean distclean cleaner spotless install_rdf
39 .PHONY: install_doc everything install_everything strip perlreq dist
41 .c.$(O):
42 $(CC) -c $(ALL_CFLAGS) -o $@ $<
44 .c.s:
45 $(CC) -S $(ALL_CFLAGS) -o $@ $<
47 .c.i:
48 $(CC) -E $(ALL_CFLAGS) -o $@ $<
50 .1.man:
51 $(NROFF) -man $< > $@
53 NASM = nasm.$(O) nasmlib.$(O) float.$(O) insnsa.$(O) assemble.$(O) \
54 labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) \
55 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) pptok.$(O) \
61 listing.$(O) eval.$(O) exprlib.$(O) stdscan.$(O) tokhash.$(O)
63 NDISASM = ndisasm.$(O) disasm.$(O) sync.$(O) nasmlib.$(O) insnsd.$(O)
65 all: nasm$(X) ndisasm$(X) nasm.man ndisasm.man
66 cd rdoff && $(MAKE) all
68 nasm$(X): $(NASM)
69 $(CC) $(LDFLAGS) -o nasm$(X) $(NASM) $(LIBS)
71 ndisasm$(X): $(NDISASM)
72 $(CC) $(LDFLAGS) -o ndisasm$(X) $(NDISASM) $(LIBS)
74 # These source files are automagically generated from a single
75 # instruction-table file by a Perl script. They're distributed,
76 # though, so it isn't necessary to have Perl just to recompile NASM
77 # from the distribution.
79 insnsa.c: insns.dat insns.pl
80 $(PERL) $(srcdir)/insns.pl -a $(srcdir)/insns.dat
81 insnsd.c: insns.dat insns.pl
82 $(PERL) $(srcdir)/insns.pl -d $(srcdir)/insns.dat
83 insnsi.h: insns.dat insns.pl
84 $(PERL) $(srcdir)/insns.pl -i $(srcdir)/insns.dat
85 insnsn.c: insns.dat insns.pl
86 $(PERL) $(srcdir)/insns.pl -n $(srcdir)/insns.dat
88 # These files contains all the standard macros that are derived from
89 # the version number.
90 version.h: version version.pl
91 $(PERL) $(srcdir)/version.pl h < $(srcdir)/version > version.h
93 version.mac: version version.pl
94 $(PERL) $(srcdir)/version.pl mac < $(srcdir)/version > version.mac
96 # This source file is generated from the standard macros file
97 # `standard.mac' by another Perl script. Again, it's part of the
98 # standard distribution.
100 macros.c: macros.pl standard.mac version.mac
101 $(PERL) $(srcdir)/macros.pl $(srcdir)/standard.mac version.mac
103 # These source files are generated from regs.dat by yet another
104 # perl script.
105 regs.c: regs.dat regs.pl
106 $(PERL) $(srcdir)/regs.pl c $(srcdir)/regs.dat > regs.c
107 regflags.c: regs.dat regs.pl
108 $(PERL) $(srcdir)/regs.pl fc $(srcdir)/regs.dat > regflags.c
109 regdis.c: regs.dat regs.pl
110 $(PERL) $(srcdir)/regs.pl dc $(srcdir)/regs.dat > regdis.c
111 regvals.c: regs.dat regs.pl
112 $(PERL) $(srcdir)/regs.pl vc $(srcdir)/regs.dat > regvals.c
113 regs.h: regs.dat regs.pl
114 $(PERL) $(srcdir)/regs.pl h $(srcdir)/regs.dat > regs.h
116 # Assembler token hash
117 tokhash.c: insns.dat regs.dat tokens.dat tokhash.pl perllib/phash.ph
118 $(PERL) $(srcdir)/tokhash.pl $(srcdir)/insns.dat $(srcdir)/regs.dat \
119 $(srcdir)/tokens.dat > tokhash.c
121 # Preprocessor token hash
122 pptok.h: pptok.dat pptok.pl perllib/phash.ph
123 $(PERL) $(srcdir)/pptok.pl h $(srcdir)/pptok.dat pptok.h
124 pptok.c: pptok.dat pptok.pl perllib/phash.ph
125 $(PERL) $(srcdir)/pptok.pl c $(srcdir)/pptok.dat pptok.c
127 # This target generates all files that require perl.
128 # This allows easier generation of distribution (see dist target).
129 PERLREQ = macros.c insnsa.c insnsd.c insnsi.h insnsn.c \
130 regs.c regs.h regflags.c regdis.c regvals.c tokhash.c \
131 version.h version.mac pptok.h pptok.c
132 perlreq: $(PERLREQ)
134 install: nasm$(X) ndisasm$(X)
135 $(INSTALL_PROGRAM) nasm$(X) $(INSTALLROOT)$(bindir)/nasm$(X)
136 $(INSTALL_PROGRAM) ndisasm$(X) $(INSTALLROOT)$(bindir)/ndisasm$(X)
137 $(INSTALL_DATA) $(srcdir)/nasm.1 $(INSTALLROOT)$(mandir)/man1/nasm.1
138 $(INSTALL_DATA) $(srcdir)/ndisasm.1 $(INSTALLROOT)$(mandir)/man1/ndisasm.1
140 clean:
141 rm -f *.$(O) *.s *.i
142 rm -f output/*.$(O) output/*.s output/*.i
143 rm -f nasm$(X) ndisasm$(X)
144 cd rdoff && $(MAKE) clean
146 distclean: clean
147 rm -f config.h config.log config.status
148 rm -f Makefile *~ *.bak *.lst *.bin
149 rm -f output/*~ output/*.bak
150 rm -f test/*.lst test/*.bin test/*.$(O) test/*.bin
151 rm -rf autom4te*.cache
152 cd rdoff && $(MAKE) distclean
154 cleaner: clean
155 rm -f $(PERLREQ) *.man nasm.spec
156 cd doc && $(MAKE) clean
158 spotless: distclean cleaner
159 rm -f doc/Makefile doc/*~ doc/*.bak
161 strip:
162 strip --strip-unneeded nasm$(X) ndisasm$(X)
164 rdf:
165 cd rdoff && $(MAKE)
167 rdf_install install_rdf:
168 cd rdoff && $(MAKE) install
170 doc:
171 cd doc && $(MAKE) all
173 doc_install install_doc:
174 cd doc && $(MAKE) install
176 everything: all doc rdf
178 install_everything: everything install install_doc install_rdf
180 dist: spotless perlreq spec
181 autoheader
182 autoconf
183 rm -rf ./autom4te*.cache
185 tar: dist
186 tar -cvj --exclude CVS -C .. -f ../nasm-`cat version`-`date +%Y%m%d`.tar.bz2 `basename \`pwd\``
188 spec: nasm.spec
190 nasm.spec: nasm.spec.in version version.pl
191 sed -e s/@@VERSION@@/`cat $(srcdir)/version`/g \
192 < nasm.spec.in > nasm.spec
194 splint:
195 splint -weak *.c
198 # This build dependencies in *ALL* makefiles. Partially for that reason,
199 # it's expected to be invoked manually.
201 alldeps: perlreq
202 $(PERL) mkdep.pl -M Makefile.in Mkfiles/*.mak -- \
203 . output
204 ./config.status
206 #-- Magic hints to mkdep.pl --#
207 # @object-ending: ".$(O)"
208 # @path-separator: "/"
209 #-- Everything below is generated by mkdep.pl - do not edit --#
210 assemble.$(O): assemble.c assemble.h compiler.h config.h insns.h insnsi.h \
211 nasm.h nasmlib.h pptok.h preproc.h regflags.c regs.h regvals.c version.h
212 crc64.$(O): crc64.c
213 disasm.$(O): disasm.c compiler.h config.h disasm.h insns.h insnsi.h insnsn.c \
214 names.c nasm.h nasmlib.h regdis.c regs.c regs.h sync.h version.h
215 eval.$(O): eval.c compiler.h config.h eval.h insnsi.h labels.h nasm.h \
216 nasmlib.h regs.h version.h
217 exprlib.$(O): exprlib.c compiler.h config.h insnsi.h nasm.h nasmlib.h regs.h \
218 version.h
219 float.$(O): float.c compiler.h config.h insnsi.h nasm.h nasmlib.h regs.h \
220 version.h
221 hashtbl.$(O): hashtbl.c compiler.h config.h hashtbl.h insnsi.h nasm.h \
222 nasmlib.h regs.h version.h
223 insnsa.$(O): insnsa.c compiler.h config.h insns.h insnsi.h nasm.h nasmlib.h \
224 regs.h version.h
225 insnsd.$(O): insnsd.c compiler.h config.h insns.h insnsi.h nasm.h nasmlib.h \
226 regs.h version.h
227 insnsn.$(O): insnsn.c
228 labels.$(O): labels.c compiler.h config.h hashtbl.h insnsi.h nasm.h \
229 nasmlib.h regs.h version.h
230 listing.$(O): listing.c compiler.h config.h insnsi.h listing.h nasm.h \
231 nasmlib.h regs.h version.h
232 macros.$(O): macros.c
233 names.$(O): names.c insnsn.c regs.c
234 nasm.$(O): nasm.c assemble.h compiler.h config.h eval.h insns.h insnsi.h \
235 labels.h listing.h nasm.h nasmlib.h outform.h parser.h pptok.h preproc.h \
236 regs.h stdscan.h version.h
237 nasmlib.$(O): nasmlib.c compiler.h config.h insns.h insnsi.h nasm.h \
238 nasmlib.h regs.h version.h
239 ndisasm.$(O): ndisasm.c compiler.h config.h disasm.h insns.h insnsi.h nasm.h \
240 nasmlib.h regs.h sync.h version.h
241 outform.$(O): outform.c compiler.h config.h insnsi.h nasm.h nasmlib.h \
242 outform.h regs.h version.h
243 output/outaout.$(O): output/outaout.c compiler.h config.h insnsi.h nasm.h \
244 nasmlib.h outform.h regs.h stdscan.h version.h
245 output/outas86.$(O): output/outas86.c compiler.h config.h insnsi.h nasm.h \
246 nasmlib.h outform.h regs.h version.h
247 output/outbin.$(O): output/outbin.c compiler.h config.h eval.h insnsi.h \
248 labels.h nasm.h nasmlib.h outform.h regs.h stdscan.h version.h
249 output/outcoff.$(O): output/outcoff.c compiler.h config.h insnsi.h nasm.h \
250 nasmlib.h outform.h regs.h version.h
251 output/outdbg.$(O): output/outdbg.c compiler.h config.h insnsi.h nasm.h \
252 nasmlib.h outform.h regs.h version.h
253 output/outelf32.$(O): output/outelf32.c compiler.h config.h insnsi.h nasm.h \
254 nasmlib.h outform.h regs.h stdscan.h version.h
255 output/outelf64.$(O): output/outelf64.c compiler.h config.h insnsi.h nasm.h \
256 nasmlib.h outform.h regs.h stdscan.h version.h
257 output/outieee.$(O): output/outieee.c compiler.h config.h insnsi.h nasm.h \
258 nasmlib.h outform.h regs.h version.h
259 output/outmacho.$(O): output/outmacho.c compiler.h config.h insnsi.h nasm.h \
260 nasmlib.h outform.h regs.h version.h
261 output/outobj.$(O): output/outobj.c compiler.h config.h insnsi.h nasm.h \
262 nasmlib.h outform.h regs.h stdscan.h version.h
263 output/outrdf.$(O): output/outrdf.c compiler.h config.h insnsi.h nasm.h \
264 nasmlib.h outform.h regs.h version.h
265 output/outrdf2.$(O): output/outrdf2.c compiler.h config.h insnsi.h nasm.h \
266 nasmlib.h outform.h rdoff/rdoff.h regs.h version.h
267 parser.$(O): parser.c compiler.h config.h float.h insns.h insnsi.h nasm.h \
268 nasmlib.h parser.h regflags.c regs.h stdscan.h version.h
269 pptok.$(O): pptok.c compiler.h config.h nasmlib.h pptok.h preproc.h
270 preproc.$(O): preproc.c compiler.h config.h hashtbl.h insnsi.h macros.c \
271 nasm.h nasmlib.h pptok.h preproc.h regs.h version.h
272 regdis.$(O): regdis.c
273 regflags.$(O): regflags.c
274 regs.$(O): regs.c
275 regvals.$(O): regvals.c
276 stdscan.$(O): stdscan.c compiler.h config.h insns.h insnsi.h nasm.h \
277 nasmlib.h regs.h stdscan.h version.h
278 sync.$(O): sync.c compiler.h config.h nasmlib.h sync.h
279 tokhash.$(O): tokhash.c compiler.h config.h insns.h insnsi.h nasm.h \
280 nasmlib.h regs.h version.h