regularized spelling of license to match name of LICENSE file
[platform/upstream/nasm.git] / Makefile.in
1 #
2 # Auto-configuring Makefile for the Netwide Assembler.
3 #
4 # The Netwide Assembler is copyright (C) 1996 Simon Tatham and
5 # Julian Hall. All rights reserved. The software is
6 # redistributable under the license given in the file "LICENSE"
7 # distributed in the NASM archive.
8
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@
16 datarootdir     = @datarootdir@
17
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
26
27 XOBJS           = @XOBJS@
28
29 INSTALL         = @INSTALL@
30 INSTALL_PROGRAM = @INSTALL_PROGRAM@
31 INSTALL_DATA    = @INSTALL_DATA@
32
33 NROFF           = @NROFF@
34
35 MKDIR           = mkdir
36 RM              = rm
37
38 STRIP           = strip
39
40 # Binary suffixes
41 O               = @OBJEXT@
42 X               = @EXEEXT@
43
44 .SUFFIXES: .c .i .s .$(O) .1 .man
45
46 .PHONY: all doc rdf install clean distclean cleaner spotless install_rdf
47 .PHONY: install_doc everything install_everything strip perlreq dist
48
49 .c.$(O):
50         $(CC) -c $(ALL_CFLAGS) -o $@ $<
51
52 .c.s:
53         $(CC) -S $(ALL_CFLAGS) -o $@ $<
54
55 .c.i:
56         $(CC) -E $(ALL_CFLAGS) -o $@ $<
57
58 .1.man:
59         $(NROFF) -man $< > $@
60
61 NASM =  nasm.$(O) nasmlib.$(O) float.$(O) insnsa.$(O) assemble.$(O) \
62         labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) \
63         outform.$(O) output/outbin.$(O) \
64         output/outaout.$(O) output/outcoff.$(O) \
65         output/outelf32.$(O) output/outelf64.$(O) \
66         output/outobj.$(O) output/outas86.$(O) output/outrdf2.$(O) \
67         output/outdbg.$(O) output/outieee.$(O) output/outmacho.$(O) \
68         preproc.$(O) pptok.$(O) \
69         listing.$(O) eval.$(O) exprlib.$(O) stdscan.$(O) tokhash.$(O)
70
71 NDISASM = ndisasm.$(O) disasm.$(O) sync.$(O) nasmlib.$(O) insnsd.$(O)
72
73 all: nasm$(X) ndisasm$(X) nasm.man ndisasm.man
74         cd rdoff && $(MAKE) all
75
76 nasm$(X): $(NASM) $(XOBJS)
77         $(CC) $(LDFLAGS) -o nasm$(X) $(NASM) $(XOBJS) $(LIBS)
78
79 ndisasm$(X): $(NDISASM) $(XOBJS)
80         $(CC) $(LDFLAGS) -o ndisasm$(X) $(NDISASM) $(XOBJS) $(LIBS)
81
82 # These source files are automagically generated from a single
83 # instruction-table file by a Perl script. They're distributed,
84 # though, so it isn't necessary to have Perl just to recompile NASM
85 # from the distribution.
86
87 insnsa.c: insns.dat insns.pl
88         $(PERL) $(srcdir)/insns.pl -a $(srcdir)/insns.dat
89 insnsd.c: insns.dat insns.pl
90         $(PERL) $(srcdir)/insns.pl -d $(srcdir)/insns.dat
91 insnsi.h: insns.dat insns.pl
92         $(PERL) $(srcdir)/insns.pl -i $(srcdir)/insns.dat
93 insnsn.c: insns.dat insns.pl
94         $(PERL) $(srcdir)/insns.pl -n $(srcdir)/insns.dat
95
96 # These files contains all the standard macros that are derived from
97 # the version number.
98 version.h: version version.pl
99         $(PERL) $(srcdir)/version.pl h < $(srcdir)/version > version.h
100
101 version.mac: version version.pl
102         $(PERL) $(srcdir)/version.pl mac < $(srcdir)/version > version.mac
103
104 version.sed: version version.pl
105         $(PERL) $(srcdir)/version.pl sed < $(srcdir)/version > version.sed
106
107 # This source file is generated from the standard macros file
108 # `standard.mac' by another Perl script. Again, it's part of the
109 # standard distribution.
110
111 macros.c: macros.pl standard.mac version.mac
112         $(PERL) $(srcdir)/macros.pl $(srcdir)/standard.mac version.mac
113
114 # These source files are generated from regs.dat by yet another
115 # perl script.
116 regs.c: regs.dat regs.pl
117         $(PERL) $(srcdir)/regs.pl c $(srcdir)/regs.dat > regs.c
118 regflags.c: regs.dat regs.pl
119         $(PERL) $(srcdir)/regs.pl fc $(srcdir)/regs.dat > regflags.c
120 regdis.c: regs.dat regs.pl
121         $(PERL) $(srcdir)/regs.pl dc $(srcdir)/regs.dat > regdis.c
122 regvals.c: regs.dat regs.pl
123         $(PERL) $(srcdir)/regs.pl vc $(srcdir)/regs.dat > regvals.c
124 regs.h: regs.dat regs.pl
125         $(PERL) $(srcdir)/regs.pl h $(srcdir)/regs.dat > regs.h
126
127 # Assembler token hash
128 tokhash.c: insns.dat regs.dat tokens.dat tokhash.pl perllib/phash.ph
129         $(PERL) $(srcdir)/tokhash.pl c $(srcdir)/insns.dat $(srcdir)/regs.dat \
130                 $(srcdir)/tokens.dat > tokhash.c
131
132 # Assembler token metadata
133 tokens.h: insns.dat regs.dat tokens.dat tokhash.pl perllib/phash.ph
134         $(PERL) $(srcdir)/tokhash.pl h $(srcdir)/insns.dat $(srcdir)/regs.dat \
135                 $(srcdir)/tokens.dat > tokens.h
136
137 # Preprocessor token hash
138 pptok.h: pptok.dat pptok.pl perllib/phash.ph
139         $(PERL) $(srcdir)/pptok.pl h $(srcdir)/pptok.dat pptok.h
140 pptok.c: pptok.dat pptok.pl perllib/phash.ph
141         $(PERL) $(srcdir)/pptok.pl c $(srcdir)/pptok.dat pptok.c
142
143 # This target generates all files that require perl.
144 # This allows easier generation of distribution (see dist target).
145 PERLREQ = macros.c insnsa.c insnsd.c insnsi.h insnsn.c \
146           regs.c regs.h regflags.c regdis.c regvals.c tokhash.c tokens.h \
147           version.h version.mac pptok.h pptok.c
148 perlreq: $(PERLREQ)
149
150 install: nasm$(X) ndisasm$(X)
151         $(MKDIR) -p $(INSTALLROOT)$(bindir)
152         $(INSTALL_PROGRAM) nasm$(X) $(INSTALLROOT)$(bindir)/nasm$(X)
153         $(INSTALL_PROGRAM) ndisasm$(X) $(INSTALLROOT)$(bindir)/ndisasm$(X)
154         $(MKDIR) -p $(INSTALLROOT)$(mandir)/man1
155         $(INSTALL_DATA) $(srcdir)/nasm.1 $(INSTALLROOT)$(mandir)/man1/nasm.1
156         $(INSTALL_DATA) $(srcdir)/ndisasm.1 $(INSTALLROOT)$(mandir)/man1/ndisasm.1
157
158 clean:
159         $(RM) -f *.$(O) *.s *.i
160         $(RM) -f output/*.$(O) output/*.s output/*.i
161         $(RM) -f nasm$(X) ndisasm$(X)
162         cd rdoff && $(MAKE) clean
163
164 distclean: clean
165         $(RM) -f config.h config.log config.status
166         $(RM) -f Makefile *~ *.bak *.lst *.bin
167         $(RM) -f output/*~ output/*.bak
168         $(RM) -f test/*.lst test/*.bin test/*.$(O) test/*.bin
169         $(RM) -rf autom4te*.cache
170         cd rdoff && $(MAKE) distclean
171
172 cleaner: clean
173         $(RM) -f $(PERLREQ) *.man nasm.spec
174         cd doc && $(MAKE) clean
175
176 spotless: distclean cleaner
177         $(RM) -f doc/Makefile doc/*~ doc/*.bak
178
179 strip:
180         $(STRIP) --strip-unneeded nasm$(X) ndisasm$(X)
181
182 rdf:
183         cd rdoff && $(MAKE)
184
185 rdf_install install_rdf:
186         cd rdoff && $(MAKE) install
187
188 doc:
189         cd doc && $(MAKE) all
190
191 doc_install install_doc:
192         cd doc && $(MAKE) install
193
194 everything: all doc rdf
195
196 install_everything: everything install install_doc install_rdf
197
198 dist: spotless perlreq spec
199         autoheader
200         autoconf
201         $(RM) -rf ./autom4te*.cache
202
203 tar: dist
204         tar -cvj --exclude CVS -C .. -f ../nasm-`cat version`-`date +%Y%m%d`.tar.bz2 `basename \`pwd\``
205
206 spec: nasm.spec
207
208 nasm.spec: nasm.spec.in version.sed
209         sed -f version.sed < nasm.spec.in > nasm.spec
210
211 splint:
212         splint -weak *.c
213
214 #
215 # This build dependencies in *ALL* makefiles.  Partially for that reason,
216 # it's expected to be invoked manually.
217 #
218 alldeps: perlreq
219         $(PERL) mkdep.pl -M Makefile.in Mkfiles/*.mak -- \
220                 . output lib
221         ./config.status
222
223 #-- Magic hints to mkdep.pl --#
224 # @object-ending: ".$(O)"
225 # @path-separator: "/"
226 #-- Everything below is generated by mkdep.pl - do not edit --#
227 assemble.$(O): assemble.c assemble.h compiler.h config.h insns.h insnsi.h \
228  nasm.h nasmlib.h pptok.h preproc.h regflags.c regs.h regvals.c tokens.h \
229  version.h
230 crc64.$(O): crc64.c compiler.h config.h
231 disasm.$(O): disasm.c compiler.h config.h disasm.h insns.h insnsi.h insnsn.c \
232  names.c nasm.h nasmlib.h regdis.c regs.c regs.h sync.h tokens.h version.h
233 eval.$(O): eval.c compiler.h config.h eval.h float.h insnsi.h labels.h \
234  nasm.h nasmlib.h regs.h version.h
235 exprlib.$(O): exprlib.c compiler.h config.h insnsi.h nasm.h nasmlib.h regs.h \
236  version.h
237 float.$(O): float.c compiler.h config.h float.h insnsi.h nasm.h nasmlib.h \
238  regs.h version.h
239 hashtbl.$(O): hashtbl.c compiler.h config.h hashtbl.h insnsi.h nasm.h \
240  nasmlib.h regs.h version.h
241 insnsa.$(O): insnsa.c compiler.h config.h insns.h insnsi.h nasm.h nasmlib.h \
242  regs.h tokens.h version.h
243 insnsd.$(O): insnsd.c compiler.h config.h insns.h insnsi.h nasm.h nasmlib.h \
244  regs.h tokens.h version.h
245 insnsn.$(O): insnsn.c
246 labels.$(O): labels.c compiler.h config.h hashtbl.h insnsi.h nasm.h \
247  nasmlib.h regs.h version.h
248 lib/snprintf.$(O): lib/snprintf.c compiler.h config.h nasmlib.h
249 lib/vsnprintf.$(O): lib/vsnprintf.c compiler.h config.h nasmlib.h
250 listing.$(O): listing.c compiler.h config.h insnsi.h listing.h nasm.h \
251  nasmlib.h regs.h version.h
252 macros.$(O): macros.c compiler.h config.h
253 names.$(O): names.c compiler.h config.h insnsn.c regs.c
254 nasm.$(O): nasm.c assemble.h compiler.h config.h eval.h float.h insns.h \
255  insnsi.h labels.h listing.h nasm.h nasmlib.h outform.h parser.h pptok.h \
256  preproc.h regs.h stdscan.h tokens.h version.h
257 nasmlib.$(O): nasmlib.c compiler.h config.h insns.h insnsi.h nasm.h \
258  nasmlib.h regs.h tokens.h version.h
259 ndisasm.$(O): ndisasm.c compiler.h config.h disasm.h insns.h insnsi.h nasm.h \
260  nasmlib.h regs.h sync.h tokens.h version.h
261 outform.$(O): outform.c compiler.h config.h insnsi.h nasm.h nasmlib.h \
262  outform.h regs.h version.h
263 output/outaout.$(O): output/outaout.c compiler.h config.h insnsi.h nasm.h \
264  nasmlib.h outform.h regs.h stdscan.h version.h
265 output/outas86.$(O): output/outas86.c compiler.h config.h insnsi.h nasm.h \
266  nasmlib.h outform.h regs.h version.h
267 output/outbin.$(O): output/outbin.c compiler.h config.h eval.h insnsi.h \
268  labels.h nasm.h nasmlib.h outform.h regs.h stdscan.h version.h
269 output/outcoff.$(O): output/outcoff.c compiler.h config.h insnsi.h nasm.h \
270  nasmlib.h outform.h regs.h version.h
271 output/outdbg.$(O): output/outdbg.c compiler.h config.h insnsi.h nasm.h \
272  nasmlib.h outform.h regs.h version.h
273 output/outelf32.$(O): output/outelf32.c compiler.h config.h insnsi.h nasm.h \
274  nasmlib.h outform.h regs.h stdscan.h version.h
275 output/outelf64.$(O): output/outelf64.c compiler.h config.h insnsi.h nasm.h \
276  nasmlib.h outform.h regs.h stdscan.h version.h
277 output/outieee.$(O): output/outieee.c compiler.h config.h insnsi.h nasm.h \
278  nasmlib.h outform.h regs.h version.h
279 output/outmacho.$(O): output/outmacho.c compiler.h config.h insnsi.h nasm.h \
280  nasmlib.h outform.h regs.h version.h
281 output/outobj.$(O): output/outobj.c compiler.h config.h insnsi.h nasm.h \
282  nasmlib.h outform.h regs.h stdscan.h version.h
283 output/outrdf.$(O): output/outrdf.c compiler.h config.h insnsi.h nasm.h \
284  nasmlib.h outform.h regs.h version.h
285 output/outrdf2.$(O): output/outrdf2.c compiler.h config.h insnsi.h nasm.h \
286  nasmlib.h outform.h rdoff/rdoff.h regs.h version.h
287 parser.$(O): parser.c compiler.h config.h float.h insns.h insnsi.h nasm.h \
288  nasmlib.h parser.h regflags.c regs.h stdscan.h tokens.h version.h
289 pptok.$(O): pptok.c compiler.h config.h hashtbl.h nasmlib.h pptok.h \
290  preproc.h
291 preproc.$(O): preproc.c compiler.h config.h hashtbl.h insnsi.h macros.c \
292  nasm.h nasmlib.h pptok.h preproc.h regs.h stdscan.h tokens.h version.h
293 regdis.$(O): regdis.c
294 regflags.$(O): regflags.c
295 regs.$(O): regs.c compiler.h config.h
296 regvals.$(O): regvals.c
297 stdscan.$(O): stdscan.c compiler.h config.h insns.h insnsi.h nasm.h \
298  nasmlib.h regs.h stdscan.h tokens.h version.h
299 sync.$(O): sync.c compiler.h config.h nasmlib.h sync.h
300 tokhash.$(O): tokhash.c compiler.h config.h hashtbl.h insns.h insnsi.h \
301  nasm.h nasmlib.h regs.h tokens.h version.h