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 license given in the file "LICENSE"
7 # distributed in the NASM archive.
9 top_srcdir
= @top_srcdir@
13 exec_prefix = @
exec_prefix@
16 datarootdir
= @datarootdir@
20 BUILD_CFLAGS
= $(CFLAGS
) @DEFS@
21 INTERNAL_CFLAGS
= -I
$(srcdir) -I.
22 ALL_CFLAGS
= $(BUILD_CFLAGS
) $(INTERNAL_CFLAGS
)
25 PERL
= perl
-I
$(srcdir)/perllib
30 INSTALL_PROGRAM
= @INSTALL_PROGRAM@
31 INSTALL_DATA
= @INSTALL_DATA@
44 .SUFFIXES
: .c .i .s .
$(O
) .1 .man
46 .PHONY
: all doc rdf
install clean distclean cleaner spotless install_rdf
47 .PHONY
: install_doc everything install_everything
strip perlreq
dist
50 $(CC
) -c
$(ALL_CFLAGS
) -o
$@
$<
53 $(CC
) -S
$(ALL_CFLAGS
) -o
$@
$<
56 $(CC
) -E
$(ALL_CFLAGS
) -o
$@
$<
61 #-- Begin File Lists --#
62 NASM
= nasm.
$(O
) nasmlib.
$(O
) ver.
$(O
) \
63 raa.
$(O
) saa.
$(O
) rbtree.
$(O
) \
64 float.
$(O
) insnsa.
$(O
) insnsb.
$(O
) \
66 assemble.
$(O
) labels.
$(O
) hashtbl.
$(O
) crc64.
$(O
) parser.
$(O
) \
67 output
/outform.
$(O
) output
/outlib.
$(O
) output
/nulldbg.
$(O
) \
69 output
/outbin.
$(O
) output
/outaout.
$(O
) output
/outcoff.
$(O
) \
70 output
/outelf.
$(O
) output
/outelf32.
$(O
) output
/outelf64.
$(O
) \
71 output
/outobj.
$(O
) output
/outas86.
$(O
) output
/outrdf2.
$(O
) \
72 output
/outdbg.
$(O
) output
/outieee.
$(O
) output
/outmacho32.
$(O
) \
73 output
/outmacho64.
$(O
) preproc.
$(O
) quote.
$(O
) pptok.
$(O
) \
74 macros.
$(O
) listing.
$(O
) eval.
$(O
) exprlib.
$(O
) stdscan.
$(O
) \
75 strfunc.
$(O
) tokhash.
$(O
) regvals.
$(O
) regflags.
$(O
) \
78 NDISASM
= ndisasm.
$(O
) disasm.
$(O
) sync.
$(O
) nasmlib.
$(O
) ver.
$(O
) \
79 insnsd.
$(O
) insnsb.
$(O
) insnsn.
$(O
) regs.
$(O
) regdis.
$(O
)
80 #-- End File Lists --#
82 all: nasm
$(X
) ndisasm
$(X
) nasm.man ndisasm.man
83 cd rdoff
&& $(MAKE
) all
85 nasm
$(X
): $(NASM
) $(XOBJS
)
86 $(CC
) $(LDFLAGS
) -o nasm
$(X
) $(NASM
) $(XOBJS
) $(LIBS
)
88 ndisasm
$(X
): $(NDISASM
) $(XOBJS
)
89 $(CC
) $(LDFLAGS
) -o ndisasm
$(X
) $(NDISASM
) $(XOBJS
) $(LIBS
)
91 # These source files are automagically generated from a single
92 # instruction-table file by a Perl script. They're distributed,
93 # though, so it isn't necessary to have Perl just to recompile NASM
94 # from the distribution.
96 insnsb.c
: insns.dat insns.pl
97 $(PERL
) $(srcdir)/insns.pl
-b
$(srcdir)/insns.dat
98 insnsa.c
: insns.dat insns.pl
99 $(PERL
) $(srcdir)/insns.pl
-a
$(srcdir)/insns.dat
100 insnsd.c
: insns.dat insns.pl
101 $(PERL
) $(srcdir)/insns.pl
-d
$(srcdir)/insns.dat
102 insnsi.h
: insns.dat insns.pl
103 $(PERL
) $(srcdir)/insns.pl
-i
$(srcdir)/insns.dat
104 insnsn.c
: insns.dat insns.pl
105 $(PERL
) $(srcdir)/insns.pl
-n
$(srcdir)/insns.dat
107 # These files contains all the standard macros that are derived from
108 # the version number.
109 version.h
: version version.pl
110 $(PERL
) $(srcdir)/version.pl h
< $(srcdir)/version
> version.h
111 version.mac
: version version.pl
112 $(PERL
) $(srcdir)/version.pl mac
< $(srcdir)/version
> version.mac
113 version.sed
: version version.pl
114 $(PERL
) $(srcdir)/version.pl sed
< $(srcdir)/version
> version.sed
115 version.mak
: version version.pl
116 $(PERL
) $(srcdir)/version.pl make
< $(srcdir)/version
> version.mak
117 version.nsh
: version version.pl
118 $(PERL
) $(srcdir)/version.pl nsis
< $(srcdir)/version
> version.nsh
120 # This source file is generated from the standard macros file
121 # `standard.mac' by another Perl script. Again, it's part of the
122 # standard distribution.
123 macros.c
: macros.pl pptok.ph standard.mac version.mac \
124 $(srcdir)/macros
/*.mac
$(srcdir)/output
/*.mac
125 $(PERL
) $(srcdir)/macros.pl
$(srcdir)/standard.mac version.mac \
126 $(srcdir)/macros
/*.mac
$(srcdir)/output
/*.mac
128 # These source files are generated from regs.dat by yet another
130 regs.c
: regs.dat regs.pl
131 $(PERL
) $(srcdir)/regs.pl c
$(srcdir)/regs.dat
> regs.c
132 regflags.c
: regs.dat regs.pl
133 $(PERL
) $(srcdir)/regs.pl
fc $(srcdir)/regs.dat
> regflags.c
134 regdis.c
: regs.dat regs.pl
135 $(PERL
) $(srcdir)/regs.pl dc
$(srcdir)/regs.dat
> regdis.c
136 regdis.h
: regs.dat regs.pl
137 $(PERL
) $(srcdir)/regs.pl dh
$(srcdir)/regs.dat
> regdis.h
138 regvals.c
: regs.dat regs.pl
139 $(PERL
) $(srcdir)/regs.pl vc
$(srcdir)/regs.dat
> regvals.c
140 regs.h
: regs.dat regs.pl
141 $(PERL
) $(srcdir)/regs.pl h
$(srcdir)/regs.dat
> regs.h
143 # Assembler token hash
144 tokhash.c
: insns.dat regs.dat tokens.dat tokhash.pl perllib
/phash.ph
145 $(PERL
) $(srcdir)/tokhash.pl c
$(srcdir)/insns.dat
$(srcdir)/regs.dat \
146 $(srcdir)/tokens.dat
> tokhash.c
148 # Assembler token metadata
149 tokens.h
: insns.dat regs.dat tokens.dat tokhash.pl perllib
/phash.ph
150 $(PERL
) $(srcdir)/tokhash.pl h
$(srcdir)/insns.dat
$(srcdir)/regs.dat \
151 $(srcdir)/tokens.dat
> tokens.h
153 # Preprocessor token hash
154 pptok.h
: pptok.dat pptok.pl perllib
/phash.ph
155 $(PERL
) $(srcdir)/pptok.pl h
$(srcdir)/pptok.dat pptok.h
156 pptok.c
: pptok.dat pptok.pl perllib
/phash.ph
157 $(PERL
) $(srcdir)/pptok.pl c
$(srcdir)/pptok.dat pptok.c
158 pptok.ph
: pptok.dat pptok.pl perllib
/phash.ph
159 $(PERL
) $(srcdir)/pptok.pl ph
$(srcdir)/pptok.dat pptok.ph
162 directives.h
: directives.dat directives.pl perllib
/phash.ph
163 $(PERL
) $(srcdir)/directives.pl h
$(srcdir)/directives.dat directives.h
164 directives.c
: directives.dat directives.pl perllib
/phash.ph
165 $(PERL
) $(srcdir)/directives.pl c
$(srcdir)/directives.dat directives.c
167 # This target generates all files that require perl.
168 # This allows easier generation of distribution (see dist target).
169 PERLREQ
= macros.c insnsb.c insnsa.c insnsd.c insnsi.h insnsn.c \
170 regs.c regs.h regflags.c regdis.c regdis.h regvals.c \
171 tokhash.c tokens.h pptok.h pptok.c pptok.ph \
172 directives.c directives.h \
173 version.h version.mac version.mak version.nsh
176 install: nasm
$(X
) ndisasm
$(X
)
177 $(MKDIR
) -p
$(INSTALLROOT
)$(bindir)
178 $(INSTALL_PROGRAM
) nasm
$(X
) $(INSTALLROOT
)$(bindir)/nasm
$(X
)
179 $(INSTALL_PROGRAM
) ndisasm
$(X
) $(INSTALLROOT
)$(bindir)/ndisasm
$(X
)
180 $(MKDIR
) -p
$(INSTALLROOT
)$(mandir)/man1
181 $(INSTALL_DATA
) $(srcdir)/nasm
.1 $(INSTALLROOT
)$(mandir)/man1
/nasm
.1
182 $(INSTALL_DATA
) $(srcdir)/ndisasm
.1 $(INSTALLROOT
)$(mandir)/man1
/ndisasm
.1
185 $(RM
) -f
*.
$(O
) *.s
*.i
186 $(RM
) -f output
/*.
$(O
) output
/*.s output
/*.i
187 $(RM
) -f nasm
$(X
) ndisasm
$(X
)
188 cd rdoff
&& $(MAKE
) clean
191 $(RM
) -f config.h config.log config.status
192 $(RM
) -f Makefile
*~
*.bak
*.lst
*.bin
193 $(RM
) -f output
/*~ output
/*.bak
194 $(RM
) -f
test/*.lst
test/*.bin
test/*.
$(O
) test/*.bin
195 $(RM
) -rf autom4te
*.cache
196 cd rdoff
&& $(MAKE
) distclean
199 $(RM
) -f
$(PERLREQ
) *.man nasm.spec
200 cd doc
&& $(MAKE
) clean
202 spotless
: distclean cleaner
203 $(RM
) -f doc
/Makefile doc
/*~ doc
/*.bak
206 $(STRIP
) --strip-unneeded nasm
$(X
) ndisasm
$(X
)
211 rdf_install install_rdf
:
212 cd rdoff
&& $(MAKE
) install
215 cd doc
&& $(MAKE
) all
217 doc_install install_doc
:
218 cd doc
&& $(MAKE
) install
220 everything
: all doc rdf
222 install_everything
: everything
install install_doc install_rdf
224 dist: spotless perlreq spec
227 $(RM
) -rf .
/autom4te
*.cache
230 tar -cvj
--exclude CVS
-C ..
-f ..
/nasm-
`cat version`-`date +%Y%m%d`.
tar.bz2
`basename \`pwd\
``
234 nasm.spec
: nasm.spec.in version.sed
235 sed
-f version.sed
< nasm.spec.in
> nasm.spec
241 cd
test && $(PERL
) performtest.pl
--nasm
=..
/nasm
*.asm
244 # This build dependencies in *ALL* makefiles. Partially for that reason,
245 # it's expected to be invoked manually.
248 $(PERL
) syncfiles.pl Makefile.in Mkfiles
/*.mak
249 $(PERL
) mkdep.pl
-M Makefile.in Mkfiles
/*.mak
-- \
253 #-- Magic hints to mkdep.pl --#
254 # @object-ending: ".$(O)"
255 # @path-separator: "/"
256 #-- Everything below is generated by mkdep.pl - do not edit --#
257 assemble.
$(O
): assemble.c assemble.h compiler.h config.h directives.h \
258 insns.h insnsi.h nasm.h nasmlib.h pptok.h preproc.h regs.h tables.h \
260 crc64.
$(O
): crc64.c compiler.h config.h nasmlib.h
261 directives.
$(O
): directives.c compiler.h config.h directives.h hashtbl.h \
262 insnsi.h nasm.h nasmlib.h pptok.h preproc.h regs.h
263 disasm.
$(O
): disasm.c compiler.h config.h directives.h disasm.h insns.h \
264 insnsi.h nasm.h nasmlib.h pptok.h preproc.h regdis.h regs.h sync.h tables.h \
266 eval.
$(O
): eval.c compiler.h config.h directives.h eval.h float.h insnsi.h \
267 labels.h nasm.h nasmlib.h pptok.h preproc.h regs.h
268 exprlib.
$(O
): exprlib.c compiler.h config.h directives.h insnsi.h nasm.h \
269 nasmlib.h pptok.h preproc.h regs.h
270 float.
$(O
): float.c compiler.h config.h directives.h float.h insnsi.h nasm.h \
271 nasmlib.h pptok.h preproc.h regs.h
272 hashtbl.
$(O
): hashtbl.c compiler.h config.h directives.h hashtbl.h insnsi.h \
273 nasm.h nasmlib.h pptok.h preproc.h regs.h
274 insnsa.
$(O
): insnsa.c compiler.h config.h directives.h insns.h insnsi.h \
275 nasm.h nasmlib.h pptok.h preproc.h regs.h tokens.h
276 insnsb.
$(O
): insnsb.c compiler.h config.h directives.h insns.h insnsi.h \
277 nasm.h nasmlib.h pptok.h preproc.h regs.h tokens.h
278 insnsd.
$(O
): insnsd.c compiler.h config.h directives.h insns.h insnsi.h \
279 nasm.h nasmlib.h pptok.h preproc.h regs.h tokens.h
280 insnsn.
$(O
): insnsn.c compiler.h config.h insnsi.h tables.h
281 labels.
$(O
): labels.c compiler.h config.h directives.h hashtbl.h insnsi.h \
282 nasm.h nasmlib.h pptok.h preproc.h regs.h
283 lib
/snprintf.
$(O
): lib
/snprintf.c compiler.h config.h nasmlib.h
284 lib
/strlcpy.
$(O
): lib
/strlcpy.c compiler.h config.h
285 lib
/vsnprintf.
$(O
): lib
/vsnprintf.c compiler.h config.h nasmlib.h
286 listing.
$(O
): listing.c compiler.h config.h directives.h insnsi.h listing.h \
287 nasm.h nasmlib.h pptok.h preproc.h regs.h
288 macros.
$(O
): macros.c compiler.h config.h directives.h hashtbl.h insnsi.h \
289 nasm.h nasmlib.h output
/outform.h pptok.h preproc.h regs.h tables.h
290 nasm.
$(O
): nasm.c assemble.h compiler.h config.h directives.h eval.h float.h \
291 insns.h insnsi.h labels.h listing.h nasm.h nasmlib.h output
/outform.h \
292 parser.h pptok.h preproc.h raa.h regs.h saa.h stdscan.h tokens.h
293 nasmlib.
$(O
): nasmlib.c compiler.h config.h directives.h insns.h insnsi.h \
294 nasm.h nasmlib.h pptok.h preproc.h regs.h tokens.h
295 ndisasm.
$(O
): ndisasm.c compiler.h config.h directives.h disasm.h insns.h \
296 insnsi.h nasm.h nasmlib.h pptok.h preproc.h regs.h sync.h tokens.h
297 output
/nulldbg.
$(O
): output
/nulldbg.c compiler.h config.h directives.h \
298 insnsi.h nasm.h nasmlib.h pptok.h preproc.h regs.h
299 output
/nullout.
$(O
): output
/nullout.c compiler.h config.h directives.h \
300 insnsi.h nasm.h nasmlib.h output
/outlib.h pptok.h preproc.h regs.h
301 output
/outaout.
$(O
): output
/outaout.c compiler.h config.h directives.h \
302 eval.h insnsi.h nasm.h nasmlib.h output
/outform.h output
/outlib.h pptok.h \
303 preproc.h raa.h regs.h saa.h stdscan.h
304 output
/outas86.
$(O
): output
/outas86.c compiler.h config.h directives.h \
305 insnsi.h nasm.h nasmlib.h output
/outform.h output
/outlib.h pptok.h \
306 preproc.h raa.h regs.h saa.h
307 output
/outbin.
$(O
): output
/outbin.c compiler.h config.h directives.h eval.h \
308 insnsi.h labels.h nasm.h nasmlib.h output
/outform.h output
/outlib.h pptok.h \
309 preproc.h regs.h saa.h stdscan.h
310 output
/outcoff.
$(O
): output
/outcoff.c compiler.h config.h directives.h \
311 eval.h insnsi.h nasm.h nasmlib.h output
/outform.h output
/outlib.h pptok.h \
312 preproc.h raa.h regs.h saa.h
313 output
/outdbg.
$(O
): output
/outdbg.c compiler.h config.h directives.h \
314 insnsi.h nasm.h nasmlib.h output
/outform.h pptok.h preproc.h regs.h
315 output
/outelf.
$(O
): output
/outelf.c compiler.h config.h directives.h \
316 insnsi.h nasm.h nasmlib.h output
/dwarf.h output
/elf.h output
/outelf.h \
317 output
/outform.h pptok.h preproc.h regs.h
318 output
/outelf32.
$(O
): output
/outelf32.c compiler.h config.h directives.h \
319 eval.h insnsi.h nasm.h nasmlib.h output
/dwarf.h output
/elf.h \
320 output
/outelf.h output
/outform.h output
/outlib.h pptok.h \
321 preproc.h raa.h rbtree.h regs.h saa.h stdscan.h
322 output
/outelf64.
$(O
): output
/outelf64.c compiler.h config.h directives.h \
323 eval.h insnsi.h nasm.h nasmlib.h output
/dwarf.h output
/elf.h \
324 output
/outelf.h output
/outform.h output
/outlib.h pptok.h \
325 preproc.h raa.h rbtree.h regs.h saa.h stdscan.h
326 output
/outform.
$(O
): output
/outform.c compiler.h config.h directives.h \
327 insnsi.h nasm.h nasmlib.h output
/outform.h pptok.h preproc.h regs.h
328 output
/outieee.
$(O
): output
/outieee.c compiler.h config.h directives.h \
329 insnsi.h nasm.h nasmlib.h output
/outform.h output
/outlib.h pptok.h \
331 output
/outlib.
$(O
): output
/outlib.c compiler.h config.h directives.h \
332 insnsi.h nasm.h nasmlib.h output
/outlib.h pptok.h preproc.h regs.h
333 output
/outmacho32.
$(O
): output
/outmacho32.c compiler.h config.h directives.h \
334 eval.h insnsi.h nasm.h nasmlib.h output
/outform.h output
/outlib.h pptok.h \
335 preproc.h raa.h regs.h saa.h
336 output
/outmacho64.
$(O
): output
/outmacho64.c compiler.h config.h directives.h \
337 insnsi.h nasm.h nasmlib.h output
/outform.h output
/outlib.h pptok.h \
338 preproc.h raa.h regs.h saa.h
339 output
/outobj.
$(O
): output
/outobj.c compiler.h config.h directives.h eval.h \
340 insnsi.h nasm.h nasmlib.h output
/outform.h output
/outlib.h pptok.h \
341 preproc.h regs.h stdscan.h
342 output
/outrdf.
$(O
): output
/outrdf.c compiler.h config.h directives.h \
343 insnsi.h nasm.h nasmlib.h output
/outform.h pptok.h preproc.h regs.h
344 output
/outrdf2.
$(O
): output
/outrdf2.c compiler.h config.h directives.h \
345 insnsi.h nasm.h nasmlib.h output
/outform.h output
/outlib.h pptok.h \
346 preproc.h rdoff
/rdoff.h regs.h saa.h
347 parser.
$(O
): parser.c compiler.h config.h directives.h eval.h float.h \
348 insns.h insnsi.h nasm.h nasmlib.h parser.h pptok.h preproc.h regs.h \
349 stdscan.h tables.h tokens.h
350 pptok.
$(O
): pptok.c compiler.h config.h hashtbl.h nasmlib.h pptok.h \
352 preproc.
$(O
): preproc.c compiler.h config.h directives.h eval.h hashtbl.h \
353 insnsi.h nasm.h nasmlib.h pptok.h preproc.h quote.h regs.h stdscan.h \
355 quote.
$(O
): quote.c compiler.h config.h nasmlib.h quote.h
356 raa.
$(O
): raa.c compiler.h config.h nasmlib.h raa.h
357 rbtree.
$(O
): rbtree.c compiler.h config.h rbtree.h
358 regdis.
$(O
): regdis.c regdis.h regs.h
359 regflags.
$(O
): regflags.c compiler.h config.h directives.h insnsi.h nasm.h \
360 nasmlib.h pptok.h preproc.h regs.h tables.h
361 regs.
$(O
): regs.c compiler.h config.h insnsi.h tables.h
362 regvals.
$(O
): regvals.c compiler.h config.h insnsi.h tables.h
363 saa.
$(O
): saa.c compiler.h config.h nasmlib.h saa.h
364 stdscan.
$(O
): stdscan.c compiler.h config.h directives.h insns.h insnsi.h \
365 nasm.h nasmlib.h pptok.h preproc.h quote.h regs.h stdscan.h tokens.h
366 strfunc.
$(O
): strfunc.c compiler.h config.h directives.h insnsi.h nasm.h \
367 nasmlib.h pptok.h preproc.h regs.h
368 sync.
$(O
): sync.c compiler.h config.h nasmlib.h sync.h
369 tokhash.
$(O
): tokhash.c compiler.h config.h directives.h hashtbl.h insns.h \
370 insnsi.h nasm.h nasmlib.h pptok.h preproc.h regs.h tokens.h
371 ver.
$(O
): ver.c compiler.h config.h directives.h insnsi.h nasm.h nasmlib.h \
372 pptok.h preproc.h regs.h version.h