Exclude config.h from the dependency list for the canned makefiles
[platform/upstream/nasm.git] / Mkfiles / msvc.mak
1 # -*- makefile -*-
2 #
3 # Makefile for building NASM using Microsoft Visual C++ and NMAKE.
4 # Tested on Microsoft Visual C++ 2005 Express Edition.
5 #
6 # Make sure to put the appropriate directories in your PATH, in
7 # the case of MSVC++ 2005, they are ...\VC\bin and ...\Common7\IDE.
8
9 top_srcdir      = .
10 srcdir          = .
11 VPATH           = .
12 prefix          = C:\Program Files\NASM
13 exec_prefix     = $(prefix)
14 bindir          = $(prefix)/bin
15 mandir          = $(prefix)/man
16
17 CC              = cl
18 CFLAGS          = /O2 /Ox /Oy /W2
19 BUILD_CFLAGS    = $(CFLAGS) /I$(srcdir)/inttypes
20 INTERNAL_CFLAGS = /I$(srcdir) /I. /DHAVE__SNPRINTF /DHAVE__VSNPRINTF
21 ALL_CFLAGS      = $(BUILD_CFLAGS) $(INTERNAL_CFLAGS)
22 LDFLAGS         = 
23 LIBS            = 
24 PERL            = perl -I$(srcdir)/perllib
25
26 # Binary suffixes
27 O               = obj
28 X               = .exe
29
30 .SUFFIXES: .c .i .s .$(O) .1 .man
31
32 .c.obj:
33         $(CC) /c $(ALL_CFLAGS) /Fo$@ $<
34
35 NASM =  nasm.$(O) nasmlib.$(O) float.$(O) insnsa.$(O) assemble.$(O) \
36         labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) \
37         outform.$(O) output/outbin.$(O) \
38         output/outaout.$(O) output/outcoff.$(O) \
39         output/outelf32.$(O) output/outelf64.$(O) \
40         output/outobj.$(O) output/outas86.$(O) output/outrdf2.$(O) \
41         output/outdbg.$(O) output/outieee.$(O) output/outmacho.$(O) \
42         preproc.$(O) pptok.$(O) \
43         listing.$(O) eval.$(O) exprlib.$(O) stdscan.$(O) tokhash.$(O)
44
45 NDISASM = ndisasm.$(O) disasm.$(O) sync.$(O) nasmlib.$(O) insnsd.$(O)
46
47 all: nasm$(X) ndisasm$(X)
48         rem cd rdoff && $(MAKE) all
49
50 nasm$(X): $(NASM)
51         $(CC) $(LDFLAGS) /Fenasm$(X) $(NASM) $(LIBS)
52
53 ndisasm$(X): $(NDISASM)
54         $(CC) $(LDFLAGS) /Fendisasm$(X) $(NDISASM) $(LIBS)
55
56 # These source files are automagically generated from a single
57 # instruction-table file by a Perl script. They're distributed,
58 # though, so it isn't necessary to have Perl just to recompile NASM
59 # from the distribution.
60
61 insnsa.c: insns.dat insns.pl
62         $(PERL) $(srcdir)/insns.pl -a $(srcdir)/insns.dat
63 insnsd.c: insns.dat insns.pl
64         $(PERL) $(srcdir)/insns.pl -d $(srcdir)/insns.dat
65 insnsi.h: insns.dat insns.pl
66         $(PERL) $(srcdir)/insns.pl -i $(srcdir)/insns.dat
67 insnsn.c: insns.dat insns.pl
68         $(PERL) $(srcdir)/insns.pl -n $(srcdir)/insns.dat
69
70 # These files contains all the standard macros that are derived from
71 # the version number.
72 version.h: version version.pl
73         $(PERL) $(srcdir)/version.pl h < $(srcdir)/version > version.h
74
75 version.mac: version version.pl
76         $(PERL) $(srcdir)/version.pl mac < $(srcdir)/version > version.mac
77
78 # This source file is generated from the standard macros file
79 # `standard.mac' by another Perl script. Again, it's part of the
80 # standard distribution.
81
82 macros.c: macros.pl standard.mac version.mac
83         $(PERL) $(srcdir)/macros.pl $(srcdir)/standard.mac version.mac
84
85 # These source files are generated from regs.dat by yet another
86 # perl script.
87 regs.c: regs.dat regs.pl
88         $(PERL) $(srcdir)/regs.pl c $(srcdir)/regs.dat > regs.c
89 regflags.c: regs.dat regs.pl
90         $(PERL) $(srcdir)/regs.pl fc $(srcdir)/regs.dat > regflags.c
91 regdis.c: regs.dat regs.pl
92         $(PERL) $(srcdir)/regs.pl dc $(srcdir)/regs.dat > regdis.c
93 regvals.c: regs.dat regs.pl
94         $(PERL) $(srcdir)/regs.pl vc $(srcdir)/regs.dat > regvals.c
95 regs.h: regs.dat regs.pl
96         $(PERL) $(srcdir)/regs.pl h $(srcdir)/regs.dat > regs.h
97
98 # Assembler token hash
99 tokhash.c: insns.dat regs.dat tokens.dat tokhash.pl perllib/phash.ph
100         $(PERL) $(srcdir)/tokhash.pl c $(srcdir)/insns.dat $(srcdir)/regs.dat \
101                 $(srcdir)/tokens.dat > tokhash.c
102
103 # Assembler token metadata
104 tokens.h: insns.dat regs.dat tokens.dat tokhash.pl perllib/phash.ph
105         $(PERL) $(srcdir)/tokhash.pl h $(srcdir)/insns.dat $(srcdir)/regs.dat \
106                 $(srcdir)/tokens.dat > tokens.h
107
108 # Preprocessor token hash
109 pptok.h: pptok.dat pptok.pl perllib/phash.ph
110         $(PERL) $(srcdir)/pptok.pl h $(srcdir)/pptok.dat pptok.h
111 pptok.c: pptok.dat pptok.pl perllib/phash.ph
112         $(PERL) $(srcdir)/pptok.pl c $(srcdir)/pptok.dat pptok.c
113
114 # This target generates all files that require perl.
115 # This allows easier generation of distribution (see dist target).
116 PERLREQ = macros.c insnsa.c insnsd.c insnsi.h insnsn.c \
117           regs.c regs.h regflags.c regdis.c regvals.c tokhash.c tokens.h \
118           version.h version.mac pptok.h pptok.c
119 perlreq: $(PERLREQ)
120
121 clean:
122         -del /f *.$(O)
123         -del /f *.s
124         -del /f *.i
125         -del /f output\*.$(O)
126         -del /f output\*.s
127         -del /f output\*.i
128         -del /f nasm$(X)
129         -del /f ndisasm$(X)
130         rem cd rdoff && $(MAKE) clean
131
132 distclean: clean
133         -del /f config.h
134         -del /f config.log
135         -del /f config.status
136         -del /f Makefile
137         -del /f *~
138         -del /f *.bak
139         -del /f *.lst
140         -del /f *.bin
141         -del /f output\*~
142         -del /f output\*.bak
143         -del /f test\*.lst
144         -del /f test\*.bin
145         -del /f test\*.$(O)
146         -del /f test\*.bin
147         -del /f/s autom4te*.cache
148         rem cd rdoff && $(MAKE) distclean
149
150 cleaner: clean
151         -del /f $(PERLREQ)
152         -del /f *.man
153         -del /f nasm.spec
154         rem cd doc && $(MAKE) clean
155
156 spotless: distclean cleaner
157         -del /f doc\Makefile
158         -del doc\*~
159         -del doc\*.bak
160
161 strip:
162
163 rdf:
164         # cd rdoff && $(MAKE)
165
166 doc:
167         # cd doc && $(MAKE) all
168
169 everything: all doc rdf
170
171 #-- Magic hints to mkdep.pl --#
172 # @object-ending: ".$(O)"
173 # @path-separator: "/"
174 # @exclude: "config.h"
175 #-- Everything below is generated by mkdep.pl - do not edit --#
176 assemble.$(O): assemble.c assemble.h compiler.h insns.h insnsi.h nasm.h \
177  nasmlib.h pptok.h preproc.h regflags.c regs.h regvals.c tokens.h version.h
178 crc64.$(O): crc64.c
179 disasm.$(O): disasm.c compiler.h disasm.h insns.h insnsi.h insnsn.c names.c \
180  nasm.h nasmlib.h regdis.c regs.c regs.h sync.h tokens.h version.h
181 eval.$(O): eval.c compiler.h eval.h float.h insnsi.h labels.h nasm.h \
182  nasmlib.h regs.h version.h
183 exprlib.$(O): exprlib.c compiler.h insnsi.h nasm.h nasmlib.h regs.h \
184  version.h
185 float.$(O): float.c compiler.h insnsi.h nasm.h nasmlib.h regs.h version.h
186 hashtbl.$(O): hashtbl.c compiler.h hashtbl.h insnsi.h nasm.h nasmlib.h \
187  regs.h version.h
188 insnsa.$(O): insnsa.c compiler.h insns.h insnsi.h nasm.h nasmlib.h regs.h \
189  tokens.h version.h
190 insnsd.$(O): insnsd.c compiler.h insns.h insnsi.h nasm.h nasmlib.h regs.h \
191  tokens.h version.h
192 insnsn.$(O): insnsn.c
193 labels.$(O): labels.c compiler.h hashtbl.h insnsi.h nasm.h nasmlib.h regs.h \
194  version.h
195 listing.$(O): listing.c compiler.h insnsi.h listing.h nasm.h nasmlib.h \
196  regs.h version.h
197 macros.$(O): macros.c
198 names.$(O): names.c insnsn.c regs.c
199 nasm.$(O): nasm.c assemble.h compiler.h eval.h insns.h insnsi.h labels.h \
200  listing.h nasm.h nasmlib.h outform.h parser.h pptok.h preproc.h regs.h \
201  stdscan.h tokens.h version.h
202 nasmlib.$(O): nasmlib.c compiler.h insns.h insnsi.h nasm.h nasmlib.h regs.h \
203  tokens.h version.h
204 ndisasm.$(O): ndisasm.c compiler.h disasm.h insns.h insnsi.h nasm.h \
205  nasmlib.h regs.h sync.h tokens.h version.h
206 outform.$(O): outform.c compiler.h insnsi.h nasm.h nasmlib.h outform.h \
207  regs.h version.h
208 output/outaout.$(O): output/outaout.c compiler.h insnsi.h nasm.h nasmlib.h \
209  outform.h regs.h stdscan.h version.h
210 output/outas86.$(O): output/outas86.c compiler.h insnsi.h nasm.h nasmlib.h \
211  outform.h regs.h version.h
212 output/outbin.$(O): output/outbin.c compiler.h eval.h insnsi.h labels.h \
213  nasm.h nasmlib.h outform.h regs.h stdscan.h version.h
214 output/outcoff.$(O): output/outcoff.c compiler.h insnsi.h nasm.h nasmlib.h \
215  outform.h regs.h version.h
216 output/outdbg.$(O): output/outdbg.c compiler.h insnsi.h nasm.h nasmlib.h \
217  outform.h regs.h version.h
218 output/outelf32.$(O): output/outelf32.c compiler.h insnsi.h nasm.h nasmlib.h \
219  outform.h regs.h stdscan.h version.h
220 output/outelf64.$(O): output/outelf64.c compiler.h insnsi.h nasm.h nasmlib.h \
221  outform.h regs.h stdscan.h version.h
222 output/outieee.$(O): output/outieee.c compiler.h insnsi.h nasm.h nasmlib.h \
223  outform.h regs.h version.h
224 output/outmacho.$(O): output/outmacho.c compiler.h insnsi.h nasm.h nasmlib.h \
225  outform.h regs.h version.h
226 output/outobj.$(O): output/outobj.c compiler.h insnsi.h nasm.h nasmlib.h \
227  outform.h regs.h stdscan.h version.h
228 output/outrdf.$(O): output/outrdf.c compiler.h insnsi.h nasm.h nasmlib.h \
229  outform.h regs.h version.h
230 output/outrdf2.$(O): output/outrdf2.c compiler.h insnsi.h nasm.h nasmlib.h \
231  outform.h rdoff/rdoff.h regs.h version.h
232 parser.$(O): parser.c compiler.h float.h insns.h insnsi.h nasm.h nasmlib.h \
233  parser.h regflags.c regs.h stdscan.h tokens.h version.h
234 pptok.$(O): pptok.c compiler.h nasmlib.h pptok.h preproc.h
235 preproc.$(O): preproc.c compiler.h hashtbl.h insnsi.h macros.c nasm.h \
236  nasmlib.h pptok.h preproc.h regs.h version.h
237 regdis.$(O): regdis.c
238 regflags.$(O): regflags.c
239 regs.$(O): regs.c
240 regvals.$(O): regvals.c
241 stdscan.$(O): stdscan.c compiler.h insns.h insnsi.h nasm.h nasmlib.h regs.h \
242  stdscan.h tokens.h version.h
243 sync.$(O): sync.c compiler.h nasmlib.h sync.h
244 tokhash.$(O): tokhash.c compiler.h insns.h insnsi.h nasm.h nasmlib.h regs.h \
245  tokens.h version.h