summaryrefslogtreecommitdiff
path: root/Makefile.sc
blob: e8386bfd2e65dfa74f677bdefc23222826c8f02f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
# Makefile for the Netwide Assembler under 32-bit Windows(tm)

#

# The Netwide Assembler is copyright (C) 1996 Simon Tatham and

# Julian Hall. All rights reserved. The software is

# redistributable under the licence given in the file "Licence"

# distributed in the NASM archive.

#

# This Makefile is designed to build NASM using the 32-bit WIN32 C

# compiler Symantec(tm) C++ 7.5, provided you have a MAKE-utility

# that's compatible to SMAKE.



CC = sc

CCFLAGS = -c -a1 -mn -Nc -w2 -w7 -o+time -5

# -5            optimize for pentium (tm)

# -c            compile only

# -o-all        no optimizations (to avoid problems in disasm.c)

# -o+time       optimize for speed

# -o+space      optimize for size

# -A1           byte alignment for structures

# -mn           compile for Win32 executable

# -Nc           create COMDAT records

# -w2           possible unattended assignment: off

# -w7           for loops with empty instruction-body



LINK = link

LINKFLAGS = /noi /exet:NT /su:console

# /noignorecase all symbols are case-sensitive

# /exet:NT      Exetype: NT (Win32)

# /su:console   Subsystem: Console (Console-App)



LIBRARIES =

EXE = .exe

OBJ = obj



.c.$(OBJ):

        $(CC) $(CCFLAGS) $*.c





#

# modules needed for different programs

#



NASMOBJS = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) insnsa.$(OBJ) \

           assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ) \

	   outbin.$(OBJ) outaout.$(OBJ) outcoff.$(OBJ) outelf.$(OBJ) \

	   outobj.$(OBJ) outas86.$(OBJ) outrdf.$(OBJ) outdbg.$(OBJ) \

	   preproc.$(OBJ) listing.$(OBJ)



NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \

              insnsd.$(OBJ)





#

# programs to create

#



all : nasm$(EXE) ndisasm$(EXE)





#

# We have to have a horrible kludge here to get round the 128 character

# limit, as usual... we'll simply use LNK-files :)

#

nasm$(EXE): $(NASMOBJS)

        $(LINK) $(LINKFLAGS) @<<

$(NASMOBJS)

nasm.exe;

<<



ndisasm$(EXE): $(NDISASMOBJS)

        $(LINK) $(LINKFLAGS) @<<

$(NDISASMOBJS)

ndisasm.exe;

<<







#

# modules for programs

#



disasm.$(OBJ): disasm.c nasm.h disasm.h sync.h insns.h names.c

assemble.$(OBJ): assemble.c nasm.h assemble.h insns.h

float.$(OBJ): float.c nasm.h

labels.$(OBJ): labels.c nasm.h nasmlib.h

listing.$(OBJ): listing.c nasm.h nasmlib.h listing.h

nasm.$(OBJ): nasm.c nasm.h nasmlib.h parser.h assemble.h labels.h \

	listing.h outform.h

nasmlib.$(OBJ): nasmlib.c nasm.h nasmlib.h

ndisasm.$(OBJ): ndisasm.c nasm.h sync.h disasm.h

outas86.$(OBJ): outas86.c nasm.h nasmlib.h

outaout.$(OBJ): outaout.c nasm.h nasmlib.h

outbin.$(OBJ): outbin.c nasm.h nasmlib.h

outcoff.$(OBJ): outcoff.c nasm.h nasmlib.h

outdbg.$(OBJ): outdbg.c nasm.h nasmlib.h

outelf.$(OBJ): outelf.c nasm.h nasmlib.h

outobj.$(OBJ): outobj.c nasm.h nasmlib.h

outrdf.$(OBJ): outrdf.c nasm.h nasmlib.h

outform.$(OBJ): outform.c outform.h nasm.h

parser.$(OBJ): parser.c nasm.h nasmlib.h parser.h float.h names.c

preproc.$(OBJ): preproc.c macros.c preproc.h nasm.h nasmlib.h

sync.$(OBJ): sync.c sync.h

insnsa.$(OBJ): insnsa.c nasm.h insns.h

insnsd.$(OBJ): insnsd.c nasm.h insns.h







clean :

	del *.obj

	del nasm$(EXE)

	del ndisasm$(EXE)