3 # Makefile for cross-compiling NASM from Linux
4 # to DOS, Win32 or OS/2 using OpenWatcom.
6 # Please see http://bugzilla.openwatcom.org/show_bug.cgi?id=751
7 # for some caveats in using OpenWatcom as a cross-compiler
8 # from Linux, in particular:
10 # > Second and more importantly, the makefile needs to ensure that the
11 # > proper headers are included. This is normally not a problem when
12 # > building on DOS, Windows, or OS/2, as they share the same C
13 # > library headers. But when cross-compiling from (or to) Linux, it
16 # > This may be accomplished by setting the INCLUDE env var in the
17 # > makefile, or setting OS2_INCLUDE, DOS_INCLUDE, NT_INCLUDE env vars
18 # > *and* making sure that the proper -bt switch is used, or passing a
19 # > switch like -I"$(%WATCOM)/h". The last variant is probably the
20 # > easiest to implement and least likely to break.
25 prefix = C
:/Program Files
/NASM
26 exec_prefix = $(prefix)
27 bindir = $(prefix)/bin
28 mandir = $(prefix)/man
32 CFLAGS
= -6 -ox
-wx
-ze
-fpi
$(DEBUG
)
33 BUILD_CFLAGS
= $(CFLAGS
) $(TARGET_FLAGS
) # -I$(srcdir)/inttypes
34 INTERNAL_CFLAGS
= -I
$(srcdir) -I. \
35 -DHAVE_SNPRINTF
-DHAVE_VSNPRINTF
36 ALL_CFLAGS
= $(BUILD_CFLAGS
) $(INTERNAL_CFLAGS
)
38 LDFLAGS
= $(ALL_CFLAGS
)
40 PERL
= perl
-I
$(srcdir)/perllib
48 # WMAKE errors out if a suffix is declared more than once, including
49 # its own built-in declarations. Thus, we need to explicitly clear the list
50 # first. Also, WMAKE only allows implicit rules that point "to the left"
53 .SUFFIXES
: .man
.1 .
$(O
) .i .c
56 $(CC
) -c
$(ALL_CFLAGS
) -fo
=$@
$<
58 NASM
= nasm.
$(O
) nasmlib.
$(O
) float.
$(O
) insnsa.
$(O
) assemble.
$(O
) \
59 labels.
$(O
) hashtbl.
$(O
) crc64.
$(O
) parser.
$(O
) \
60 outform.
$(O
) output
/outbin.
$(O
) \
61 output
/outaout.
$(O
) output
/outcoff.
$(O
) \
62 output
/outelf32.
$(O
) output
/outelf64.
$(O
) \
63 output
/outobj.
$(O
) output
/outas86.
$(O
) output
/outrdf2.
$(O
) \
64 output
/outdbg.
$(O
) output
/outieee.
$(O
) output
/outmacho.
$(O
) \
65 preproc.
$(O
) pptok.
$(O
) \
66 listing.
$(O
) eval.
$(O
) exprlib.
$(O
) stdscan.
$(O
) tokhash.
$(O
)
68 NDISASM
= ndisasm.
$(O
) disasm.
$(O
) sync.
$(O
) nasmlib.
$(O
) insnsd.
$(O
)
71 @echo
'Please build "dos", "win32" or "os2"'
74 $(MAKE
) -f
$(MAKEFILE_LIST
) all TARGET_FLAGS
='-bt=DOS -l=DOS4G'
77 $(MAKE
) -f
$(MAKEFILE_LIST
) all TARGET_FLAGS
='-bt=NT -l=NT'
80 $(MAKE
) -f
$(MAKEFILE_LIST
) all TARGET_FLAGS
='-bt=OS2 -l=OS2V2'
82 all: nasm
$(X
) ndisasm
$(X
)
85 $(LD
) $(LDFLAGS
) -fe
=nasm
$(X
) $(NASM
) $(LIBS
)
87 ndisasm
$(X
): $(NDISASM
)
88 $(LD
) $(LDFLAGS
) -fe
=ndisasm
$(X
) $(NDISASM
) $(LIBS
)
90 # These source files are automagically generated from a single
91 # instruction-table file by a Perl script. They're distributed,
92 # though, so it isn't necessary to have Perl just to recompile NASM
93 # from the distribution.
95 insnsa.c
: insns.dat insns.pl
96 $(PERL
) $(srcdir)/insns.pl
-a
$(srcdir)/insns.dat
97 insnsd.c
: insns.dat insns.pl
98 $(PERL
) $(srcdir)/insns.pl
-d
$(srcdir)/insns.dat
99 insnsi.h
: insns.dat insns.pl
100 $(PERL
) $(srcdir)/insns.pl
-i
$(srcdir)/insns.dat
101 insnsn.c
: insns.dat insns.pl
102 $(PERL
) $(srcdir)/insns.pl
-n
$(srcdir)/insns.dat
104 # These files contains all the standard macros that are derived from
105 # the version number.
106 version.h
: version version.pl
107 $(PERL
) $(srcdir)/version.pl h
< $(srcdir)/version
> version.h
109 version.mac
: version version.pl
110 $(PERL
) $(srcdir)/version.pl mac
< $(srcdir)/version
> version.mac
112 # This source file is generated from the standard macros file
113 # `standard.mac' by another Perl script. Again, it's part of the
114 # standard distribution.
116 macros.c
: macros.pl standard.mac version.mac
117 $(PERL
) $(srcdir)/macros.pl
$(srcdir)/standard.mac version.mac
119 # These source files are generated from regs.dat by yet another
121 regs.c
: regs.dat regs.pl
122 $(PERL
) $(srcdir)/regs.pl c
$(srcdir)/regs.dat
> regs.c
123 regflags.c
: regs.dat regs.pl
124 $(PERL
) $(srcdir)/regs.pl
fc $(srcdir)/regs.dat
> regflags.c
125 regdis.c
: regs.dat regs.pl
126 $(PERL
) $(srcdir)/regs.pl dc
$(srcdir)/regs.dat
> regdis.c
127 regvals.c
: regs.dat regs.pl
128 $(PERL
) $(srcdir)/regs.pl vc
$(srcdir)/regs.dat
> regvals.c
129 regs.h
: regs.dat regs.pl
130 $(PERL
) $(srcdir)/regs.pl h
$(srcdir)/regs.dat
> regs.h
132 # Assembler token hash
133 tokhash.c
: insns.dat regs.dat tokens.dat tokhash.pl perllib
/phash.ph
134 $(PERL
) $(srcdir)/tokhash.pl c
$(srcdir)/insns.dat
$(srcdir)/regs.dat \
135 $(srcdir)/tokens.dat
> tokhash.c
137 # Assembler token metadata
138 tokens.h
: insns.dat regs.dat tokens.dat tokhash.pl perllib
/phash.ph
139 $(PERL
) $(srcdir)/tokhash.pl h
$(srcdir)/insns.dat
$(srcdir)/regs.dat \
140 $(srcdir)/tokens.dat
> tokens.h
142 # Preprocessor token hash
143 pptok.h
: pptok.dat pptok.pl perllib
/phash.ph
144 $(PERL
) $(srcdir)/pptok.pl h
$(srcdir)/pptok.dat pptok.h
145 pptok.c
: pptok.dat pptok.pl perllib
/phash.ph
146 $(PERL
) $(srcdir)/pptok.pl c
$(srcdir)/pptok.dat pptok.c
148 # This target generates all files that require perl.
149 # This allows easier generation of distribution (see dist target).
150 PERLREQ
= macros.c insnsa.c insnsd.c insnsi.h insnsn.c \
151 regs.c regs.h regflags.c regdis.c regvals.c tokhash.c tokens.h \
152 version.h version.mac pptok.h pptok.c
164 # cd rdoff && $(MAKE) clean
166 distclean: clean .SYMBOLIC
181 -rm -f
/s autom4te
*.cache
182 # cd rdoff && $(MAKE) distclean
184 cleaner
: clean .SYMBOLIC
188 # cd doc && $(MAKE) clean
190 spotless
: distclean cleaner .SYMBOLIC
199 # cd rdoff && $(MAKE)
202 # cd doc && $(MAKE) all
204 everything
: all doc rdf
206 #-- Magic hints to mkdep.pl --#
207 # @object-ending: ".$(O)"
208 # @path-separator: "/"
209 # @exclude: "config.h"
211 #-- Everything below is generated by mkdep.pl - do not edit --#
212 assemble.
$(O
): assemble.c assemble.h compiler.h insns.h insnsi.h nasm.h \
213 nasmlib.h pptok.h preproc.h regflags.c regs.h regvals.c tokens.h version.h
214 crc64.
$(O
): crc64.c compiler.h
215 disasm.
$(O
): disasm.c compiler.h disasm.h insns.h insnsi.h insnsn.c names.c \
216 nasm.h nasmlib.h regdis.c regs.c regs.h sync.h tokens.h version.h
217 eval.
$(O
): eval.c compiler.h eval.h float.h insnsi.h labels.h nasm.h \
218 nasmlib.h regs.h version.h
219 exprlib.
$(O
): exprlib.c compiler.h insnsi.h nasm.h nasmlib.h regs.h \
221 float.
$(O
): float.c compiler.h float.h insnsi.h nasm.h nasmlib.h regs.h \
223 hashtbl.
$(O
): hashtbl.c compiler.h hashtbl.h insnsi.h nasm.h nasmlib.h \
225 insnsa.
$(O
): insnsa.c compiler.h insns.h insnsi.h nasm.h nasmlib.h regs.h \
227 insnsd.
$(O
): insnsd.c compiler.h insns.h insnsi.h nasm.h nasmlib.h regs.h \
229 insnsn.
$(O
): insnsn.c
230 labels.
$(O
): labels.c compiler.h hashtbl.h insnsi.h nasm.h nasmlib.h regs.h \
232 lib
/snprintf.
$(O
): lib
/snprintf.c compiler.h nasmlib.h
233 lib
/vsnprintf.
$(O
): lib
/vsnprintf.c compiler.h nasmlib.h
234 listing.
$(O
): listing.c compiler.h insnsi.h listing.h nasm.h nasmlib.h \
236 macros.
$(O
): macros.c compiler.h
237 names.
$(O
): names.c compiler.h insnsn.c regs.c
238 nasm.
$(O
): nasm.c assemble.h compiler.h eval.h float.h insns.h insnsi.h \
239 labels.h listing.h nasm.h nasmlib.h outform.h parser.h pptok.h preproc.h \
240 regs.h stdscan.h tokens.h version.h
241 nasmlib.
$(O
): nasmlib.c compiler.h insns.h insnsi.h nasm.h nasmlib.h regs.h \
243 ndisasm.
$(O
): ndisasm.c compiler.h disasm.h insns.h insnsi.h nasm.h \
244 nasmlib.h regs.h sync.h tokens.h version.h
245 outform.
$(O
): outform.c compiler.h insnsi.h nasm.h nasmlib.h outform.h \
247 output
/outaout.
$(O
): output
/outaout.c compiler.h insnsi.h nasm.h nasmlib.h \
248 outform.h regs.h stdscan.h version.h
249 output
/outas86.
$(O
): output
/outas86.c compiler.h insnsi.h nasm.h nasmlib.h \
250 outform.h regs.h version.h
251 output
/outbin.
$(O
): output
/outbin.c compiler.h eval.h insnsi.h labels.h \
252 nasm.h nasmlib.h outform.h regs.h stdscan.h version.h
253 output
/outcoff.
$(O
): output
/outcoff.c compiler.h insnsi.h nasm.h nasmlib.h \
254 outform.h regs.h version.h
255 output
/outdbg.
$(O
): output
/outdbg.c compiler.h insnsi.h nasm.h nasmlib.h \
256 outform.h regs.h version.h
257 output
/outelf32.
$(O
): output
/outelf32.c compiler.h insnsi.h nasm.h nasmlib.h \
258 outform.h regs.h stdscan.h version.h
259 output
/outelf64.
$(O
): output
/outelf64.c compiler.h insnsi.h nasm.h nasmlib.h \
260 outform.h regs.h stdscan.h version.h
261 output
/outieee.
$(O
): output
/outieee.c compiler.h insnsi.h nasm.h nasmlib.h \
262 outform.h regs.h version.h
263 output
/outmacho.
$(O
): output
/outmacho.c compiler.h insnsi.h nasm.h nasmlib.h \
264 outform.h regs.h version.h
265 output
/outobj.
$(O
): output
/outobj.c compiler.h insnsi.h nasm.h nasmlib.h \
266 outform.h regs.h stdscan.h version.h
267 output
/outrdf.
$(O
): output
/outrdf.c compiler.h insnsi.h nasm.h nasmlib.h \
268 outform.h regs.h version.h
269 output
/outrdf2.
$(O
): output
/outrdf2.c compiler.h insnsi.h nasm.h nasmlib.h \
270 outform.h rdoff
/rdoff.h regs.h version.h
271 parser.
$(O
): parser.c compiler.h float.h insns.h insnsi.h nasm.h nasmlib.h \
272 parser.h regflags.c regs.h stdscan.h tokens.h version.h
273 pptok.
$(O
): pptok.c compiler.h hashtbl.h nasmlib.h pptok.h preproc.h
274 preproc.
$(O
): preproc.c compiler.h hashtbl.h insnsi.h macros.c nasm.h \
275 nasmlib.h pptok.h preproc.h regs.h stdscan.h tokens.h version.h
276 regdis.
$(O
): regdis.c
277 regflags.
$(O
): regflags.c
278 regs.
$(O
): regs.c compiler.h
279 regvals.
$(O
): regvals.c
280 stdscan.
$(O
): stdscan.c compiler.h insns.h insnsi.h nasm.h nasmlib.h regs.h \
281 stdscan.h tokens.h version.h
282 sync.
$(O
): sync.c compiler.h nasmlib.h sync.h
283 tokhash.
$(O
): tokhash.c compiler.h hashtbl.h insns.h insnsi.h nasm.h \
284 nasmlib.h regs.h tokens.h version.h