summaryrefslogtreecommitdiff
path: root/Mkfiles/Makefile.ms7
blob: 1b23a21a97ed36e4669734f8eae714404280149c (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
# Makefile for the Netwide Assembler under 16-bit DOS
#
# 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 a 16-bit DOS C
# compiler such as Microsoft C, provided you have a compatible MAKE.
# It's been tested with Microsoft C 5.x plus Borland Make. (Yes, I
# know it's silly, but...)

# update:  MSC 5.1 will not compile 'nasmlib.c'   (arg lists don't match)
#          MSC 6.00A will not compile 'insnsa.c'  (qcl is required)
#          MSC 7.00 will compile all
#
# GNU software compiled by DJGPP is also required:
#
#    grep  2.4
#    perl  5.6.1
#
# Source and DOS/Windows binaries may be downloaded from:
#
#    ftp://ftp.simtel.net/pub/simtelnet/gnu/djgpp/v2gnu/
#
# Compilation has been tested under Windows 98 & Windows 2000
# MSC 7.00 & DJGPP applications require a DPMI interface, which is
# a part of MSC 7.00 under DOS.  It is also a part of Windows.
#
#
# For a 16-bit compiler, we don't need all the formats
#
CONFIG = -DOF_ONLY -DOF_BIN -DOF_OBJ -DOF_WIN32 -DOF_AS86

#CC = cl /c /O /AL /Gt
#   Compile for a 286, ain't nobody using an 8086 anymore
CC = cl /c /Oz /AL /Gt256 /G2 /I.. # MSC 7.00

#QCL = qcl /c /AL /Gt
QCL = $(CC)                     # MSC 7.00

LINK = link
LINKFLAGS = /F4000 /Fm
LIBRARIES =
EXE = .exe#
OBJ = obj#

.c.$(OBJ):
	$(CC) $(CONFIG) /Fo$@ $*.c

NASMOBJS1 = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) insnsa.$(OBJ) \
           assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ)
NASMOBJS2 = output\outbin.$(OBJ) output\outaout.$(OBJ) output\outcoff.$(OBJ)
NASMOBJS3 = output\outelf32.$(OBJ) output\outelf64.$(OBJ) output\outobj.$(OBJ) output\outas86.$(OBJ)
NASMOBJS4 = output\outrdf.$(OBJ) output\outrdf2.$(OBJ) output\outieee.$(OBJ)
NASMOBJS5 = output\outdbg.$(OBJ) preproc.$(OBJ) listing.$(OBJ) eval.$(OBJ)

NASMOBJS = $(NASMOBJS1) $(NASMOBJS2) $(NASMOBJS3) $(NASMOBJS4) $(NASMOBJS5)

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

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

# We have to have a horrible kludge here to get round the 128 character
# limit, as usual...
LINKOBJS = a*.obj e*.obj f*.obj insnsa.obj l*.obj na*.obj o*.obj p*.obj
nasm$(EXE): $(NASMOBJS)
	echo $(NASMOBJS1) + >foo
	echo $(NASMOBJS2) + >>foo
	echo $(NASMOBJS3) + >>foo
	echo $(NASMOBJS4) + >>foo
	echo $(NASMOBJS5)   >> foo
	$(LINK) /st:4096 @foo,nasm;

ndisasm$(EXE): $(NDISASMOBJS)
	$(LINK) $(NDISASMOBJS), ndisasm;

output\version.h: version.h
	copy version.h output

output\nasm.h: nasm.h
	copy nasm.h output

output\insnsi.h: insnsi.h
	copy insnsi.h output

output\nasmlib.h: nasmlib.h
	copy nasmlib.h output

output\outform.h: outform.h
	copy outform.h output

# These files contains all the standard macros that are derived from
# the version number.
version.h: version version.pl
	perl version.pl h < version > version.h

version.mac: version version.pl
	perl version.pl mac < version > version.mac

# This source file is generated from the standard macros file
# `standard.mac' by another Perl script. Again, it's part of the
# standard distribution.

macros.c: macros.pl standard.mac version.mac
	perl macros.pl standard.mac version.mac

insnsa.c insnsd.c insnsi.h insnsn.c: insns16.dat insns.pl
	perl insns.pl insns16.dat

insns16.dat:  insns.dat
	grep -v WILLAMETTE insns.dat | grep -v KATMAI | grep -v SSE | \
	    grep -v MMX | grep -v 3DNOW | grep -v UNDOC >insns16.dat

# These source files are generated from regs.dat by yet another
# perl script.
 regs.c: regs.dat regs.pl
	perl regs.pl c regs.dat > regs.c
regflags.c: regs.dat regs.pl
	perl regs.pl fc regs.dat > regflags.c
regdis.c: regs.dat regs.pl
	perl regs.pl dc regs.dat > regdis.c
regvals.c: regs.dat regs.pl
	perl regs.pl vc regs.dat > regvals.c
regs.h: regs.dat regs.pl
	perl regs.pl h regs.dat > regs.h

# Another grotty hack: QC is less likely to run out of memory than
# CL proper; and we don't need any optimisation in these modules
# since they're just data.
insnsa.$(OBJ): insnsa.c nasm.h version.h insnsi.h insns.h
	$(QCL) insnsa.c

insnsd.$(OBJ): insnsd.c nasm.h version.h insnsi.h insns.h
	$(QCL) insnsd.c

tidy:
	del output\*.h
	del *.$(OBJ)
	del output\*.$(OBJ)

clean :  tidy
	del nasm$(EXE)
	del ndisasm$(EXE)

spotless:  clean
	del insns16.dat
	del insnsa.c
	del insnsd.c
	del insnsi.h
	del insnsn.c
        del version.h

#-- Magic hints to mkdep.pl --#
# @object-ending: ".$(OBJ)"
# @path-separator: "\"
#-- Everything below is generated by mkdep.pl - do not edit --#
assemble.$(OBJ): assemble.c preproc.h insns.h pptok.h regs.h regflags.c \
 config.h version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
disasm.$(OBJ): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
 version.h nasm.h insnsn.c names.c insnsi.h disasm.h
eval.$(OBJ): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h \
 nasm.h insnsi.h
float.$(OBJ): float.c regs.h config.h version.h nasm.h insnsi.h
insnsa.$(OBJ): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
insnsd.$(OBJ): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
insnsn.$(OBJ): insnsn.c
labels.$(OBJ): labels.c regs.h config.h version.h nasmlib.h nasm.h insnsi.h
listing.$(OBJ): listing.c regs.h config.h version.h nasmlib.h nasm.h \
 insnsi.h listing.h
macros.$(OBJ): macros.c
names.$(OBJ): names.c regs.c insnsn.c
nasm.$(OBJ): nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h \
 regs.h outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h \
 insnsi.h listing.h
nasmlib.$(OBJ): nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
 insnsi.h
ndisasm.$(OBJ): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
 nasm.h insnsi.h disasm.h
outform.$(OBJ): outform.c regs.h config.h outform.h version.h nasm.h \
 insnsi.h
output\outaout.$(OBJ): output\outaout.c regs.h outform.h config.h version.h \
 nasmlib.h nasm.h stdscan.h insnsi.h
output\outas86.$(OBJ): output\outas86.c regs.h outform.h config.h version.h \
 nasmlib.h nasm.h insnsi.h
output\outbin.$(OBJ): output\outbin.c labels.h eval.h regs.h outform.h \
 config.h version.h nasmlib.h nasm.h stdscan.h insnsi.h
output\outcoff.$(OBJ): output\outcoff.c regs.h outform.h config.h version.h \
 nasmlib.h nasm.h insnsi.h
output\outdbg.$(OBJ): output\outdbg.c regs.h outform.h config.h version.h \
 nasmlib.h nasm.h insnsi.h
output\outelf32.$(OBJ): output\outelf32.c regs.h outform.h config.h \
 version.h nasmlib.h nasm.h stdscan.h insnsi.h
output\outelf64.$(OBJ): output\outelf64.c regs.h outform.h config.h \
 version.h nasmlib.h nasm.h stdscan.h insnsi.h
output\outieee.$(OBJ): output\outieee.c regs.h outform.h config.h version.h \
 nasmlib.h nasm.h insnsi.h
output\outmacho.$(OBJ): output\outmacho.c compiler.h regs.h outform.h \
 config.h version.h nasmlib.h nasm.h insnsi.h
output\outobj.$(OBJ): output\outobj.c regs.h outform.h config.h version.h \
 nasmlib.h nasm.h stdscan.h insnsi.h
output\outrdf.$(OBJ): output\outrdf.c regs.h outform.h config.h version.h \
 nasmlib.h nasm.h insnsi.h
output\outrdf2.$(OBJ): output\outrdf2.c rdoff\rdoff.h regs.h outform.h \
 config.h version.h nasmlib.h nasm.h insnsi.h
parser.$(OBJ): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
 version.h nasmlib.h nasm.h stdscan.h insnsi.h
pptok.$(OBJ): pptok.c preproc.h pptok.h nasmlib.h
preproc.$(OBJ): preproc.c preproc.h macros.c pptok.h regs.h config.h \
 version.h nasmlib.h nasm.h insnsi.h
regdis.$(OBJ): regdis.c
regflags.$(OBJ): regflags.c
regs.$(OBJ): regs.c
regvals.$(OBJ): regvals.c
stdscan.$(OBJ): stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
 stdscan.h insnsi.h
sync.$(OBJ): sync.c sync.h
tokhash.$(OBJ): tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h