update version number to 0.99.01
[nasm/autotest.git] / Mkfiles / Makefile.scw
blob5ffbc8cfa5c909aa5fe6c5b066f5aa01a4e54e4a
1 # Makefile for the Netwide Assembler under 32-bit Windows(tm)
3 # The Netwide Assembler is copyright (C) 1996 Simon Tatham and
4 # Julian Hall. All rights reserved. The software is
5 # redistributable under the licence given in the file "Licence"
6 # distributed in the NASM archive.
8 # This Makefile is designed to build NASM using the 32-bit WIN32 C
9 # compiler Symantec(tm) C++ 7.5, provided you have a MAKE-utility
10 # that's compatible to SMAKE.
12 CC = sc
13 CCFLAGS = -c -a1 -mn -Nc -w2 -w7 -o+time -5
14 # -5            optimize for pentium (tm)
15 # -c            compile only
16 # -o-all        no optimizations (to avoid problems in disasm.c)
17 # -o+time       optimize for speed
18 # -o+space      optimize for size
19 # -A1           byte alignment for structures
20 # -mn           compile for Win32 executable
21 # -mx           compile for DOS386 (DOSX) executable
22 # -Nc           create COMDAT records
23 # -w2           possible unattended assignment: off
24 # -w7           for loops with empty instruction-body
26 LINK = link
27 LINKFLAGS = /noi /exet:NT /su:console
28 # /noignorecase all symbols are case-sensitive
29 # /exet:NT      Exetype: NT (Win32)
30 # /exet:DOSX    Exetype: DOSX (DOS32)
31 # /su:console   Subsystem: Console (Console-App)
33 LIBRARIES =
34 EXE = .exe
35 OBJ = obj
37 .c.$(OBJ):
38         $(CC) $(CCFLAGS) $*.c
42 # modules needed for different programs
45 NASMOBJS = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) insnsa.$(OBJ) \
46            assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ) \
47            output/outbin.$(OBJ) output/outaout.$(OBJ) output/outcoff.$(OBJ) output/outelf.$(OBJ) \
48            output/outobj.$(OBJ) output/outas86.$(OBJ) output/outrdf.$(OBJ) output/outdbg.$(OBJ) \
49            output/outrdf2.$(OBJ) output/outieee.$(OBJ) \
50            preproc.$(OBJ) listing.$(OBJ) eval.$(OBJ)
52 NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \
53               insnsd.$(OBJ)
57 # programs to create
60 all : nasmw$(EXE) ndisasmw$(EXE)
64 # We have to have a horrible kludge here to get round the 128 character
65 # limit, as usual... we'll simply use LNK-files :)
67 nasmw$(EXE): $(NASMOBJS)
68         $(LINK) $(LINKFLAGS) @<<
69 $(NASMOBJS)
70 nasmw.exe;
73 ndisasmw$(EXE): $(NDISASMOBJS)
74         $(LINK) $(LINKFLAGS) @<<
75 $(NDISASMOBJS)
76 ndisasmw.exe;
79 clean :
80         del *.obj
81         del nasmw$(EXE)
82         del ndisasmw$(EXE)
84 #-- Magic hints to mkdep.pl --#
85 # @object-ending: ".$(OBJ)"
86 # @path-separator: "/"
87 #-- Everything below is generated by mkdep.pl - do not edit --#
88 assemble.$(OBJ): assemble.c preproc.h insns.h regs.h version.h nasmlib.h \
89  nasm.h regvals.c insnsi.h assemble.h
90 disasm.$(OBJ): disasm.c insns.h sync.h regdis.c regs.h regs.c version.h \
91  nasm.h insnsn.c names.c insnsi.h disasm.h
92 eval.$(OBJ): eval.c labels.h eval.h regs.h version.h nasmlib.h nasm.h
93 float.$(OBJ): float.c regs.h version.h nasm.h
94 insnsa.$(OBJ): insnsa.c insns.h regs.h version.h nasm.h insnsi.h
95 insnsd.$(OBJ): insnsd.c insns.h regs.h version.h nasm.h insnsi.h
96 insnsn.$(OBJ): insnsn.c
97 labels.$(OBJ): labels.c regs.h version.h nasmlib.h nasm.h
98 listing.$(OBJ): listing.c regs.h version.h nasmlib.h nasm.h listing.h
99 macros.$(OBJ): macros.c
100 names.$(OBJ): names.c regs.c insnsn.c
101 nasm.$(OBJ): nasm.c labels.h preproc.h insns.h parser.h eval.h regs.h \
102  outform.h version.h nasmlib.h nasm.h assemble.h insnsi.h listing.h
103 nasmlib.$(OBJ): nasmlib.c insns.h regs.h regs.c version.h nasmlib.h nasm.h \
104  insnsn.c names.c insnsi.h
105 ndisasm.$(OBJ): ndisasm.c insns.h sync.h regs.h version.h nasmlib.h nasm.h \
106  insnsi.h disasm.h
107 outform.$(OBJ): outform.c regs.h outform.h version.h nasm.h
108 output/outaout.$(OBJ): output/outaout.c regs.h outform.h version.h nasmlib.h \
109  nasm.h
110 output/outas86.$(OBJ): output/outas86.c regs.h outform.h version.h nasmlib.h \
111  nasm.h
112 output/outbin.$(OBJ): output/outbin.c labels.h eval.h regs.h outform.h \
113  version.h nasmlib.h nasm.h
114 output/outcoff.$(OBJ): output/outcoff.c regs.h outform.h version.h nasmlib.h \
115  nasm.h
116 output/outdbg.$(OBJ): output/outdbg.c regs.h outform.h version.h nasmlib.h \
117  nasm.h
118 output/outelf.$(OBJ): output/outelf.c regs.h outform.h version.h nasmlib.h \
119  nasm.h
120 output/outieee.$(OBJ): output/outieee.c regs.h outform.h version.h nasmlib.h \
121  nasm.h
122 output/outobj.$(OBJ): output/outobj.c regs.h outform.h version.h nasmlib.h \
123  nasm.h
124 output/outrdf.$(OBJ): output/outrdf.c regs.h outform.h version.h nasmlib.h \
125  nasm.h
126 output/outrdf2.$(OBJ): output/outrdf2.c rdoff/rdoff.h regs.h outform.h \
127  version.h nasmlib.h nasm.h
128 parser.$(OBJ): parser.c insns.h parser.h float.h regs.h regflags.c version.h \
129  nasmlib.h nasm.h insnsi.h
130 preproc.$(OBJ): preproc.c macros.c regs.h version.h nasmlib.h nasm.h
131 regdis.$(OBJ): regdis.c
132 regflags.$(OBJ): regflags.c
133 regs.$(OBJ): regs.c
134 regvals.$(OBJ): regvals.c
135 sync.$(OBJ): sync.c sync.h