-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
273 lines (214 loc) · 8.52 KB
/
Makefile
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
# Makefile for GAS.
# Copyright (C) 1989, Free Software Foundation
#
# This file is part of GAS, the GNU Assembler.
#
# GAS is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 1, or (at your option)
# any later version.
#
# GAS is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GAS; see the file COPYING. If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
# This makefile may be used to make the VAX, 68020, 80386,
# SPARC, or ns32k assembler(s).
# If you are on a BSD system, un-comment the next two lines, and comment out
# the lines for SystemV and HPUX below
#CFLAGS = -g -I.
#LDFLAGS = $(CFLAGS)
# To compile gas on a System Five machine, comment out the two lines above
# and un-comment out the next three lines
# Comment out the -lPW on the LOADLIBES line if you are using GCC.
#CFLAGS = -v -g -I. -DUSG -Dti1500
# For building an optimized version
CFLAGS = -v -O -w -I. -DUSG -Dti1500
LDFLAGS =
LOADLIBES = -lmalloc -lPW
# To compile gas for HPUX, link m-hpux.h to m68k.h , and un-comment the
# next two lines. (If you are using GCC, comment out the alloca.o part)
# (Get alloca from the emacs distribution, or use GCC.)
# CFLAGS = -g -I. -DUSG
# LOADLIBES = alloca.o
# If you just want to compile the vax assembler, type 'make avax'
# If you just want to compile the i386 assembler, type 'make a386'
# If you just want to compile the ns32k assembler, type 'make a32k'
# If you just want to compile the sparc assembler, type 'make asparc'
# If you just want to compile the mc68020 assembler, make sure m68k.h
# is correctly set up, and type type 'make a68' (Except on HPUX machines,
# where you will have to make the changes marked below before typing
# 'make a68'
# m68k.h should be a symbolic or hard-link to one of
# m-sun3.h , m-hpux.h or m-generic.h
# depending on which machine you want to compile the 68020 assembler for.
#
# If you machine does not have vfprintf, but does have _doprnt(),
# remove the # from the -DNO_VARARGS line below.
#
# To include the mc68851 mmu coprocessor instructions in the 68020 assembler,
# remove the # from the -Dm68851 line below.
#
# If you want the 80386 assembler to correctly handle fsub/fsubr and fdiv/fdivr
# opcodes (unlike most 80386 assemblers), remove the # from
# the -DNON_BROKEN_WORDS line below.
O1 = -DNO_VARARGS
O2 = # -DNON_BROKEN_WORDS
O3 = -Dm68851
OPTIONS = $(O1) $(O2) $(O3)
#
# To make the 68020 assembler compile as the default, un-comment the next
# line, and comment out all the other lines that start with DEFAULT_GAS
DEFAULT_GAS=a68
#
# To make the VAX assembler compile as the default, un-comment the next
# line and commment out all the other lines that start with DEFAULT_GAS
#DEFAULT_GAS=avax
#
# To make the 80386 assembler compile as the default, un-comment the next
# line and commment out all the other lines that start with DEFAULT_GAS
#DEFAULT_GAS=a386
#
# To make the ns32k assembler compile as the default, un-comment the next
# line and commment out all the other lines that start with DEFAULT_GAS
#DEFAULT_GAS=a32k
#
# To make the sparc assembler compile as the default, un-comment the next
# line and commment out all the other lines that start with DEFAULT_GAS
#DEFAULT_GAS=asparc
CC = ${BLD_CC} ${BLD_ENV}
LD = ${BLD_LD}
.c.i:
$(CC) -E $(CFLAGS) $*.c >$*.i
.SUFFIXES: .i
# Global Sources -------------------------------------------------------------
a =\
as.o xrealloc.o xmalloc.o hash.o hex-value.o \
atof-generic.o append.o messages.o expr.o app.o \
frags.o input-file.o input-scrub.o output-file.o \
subsegs.o symbols.o version.o \
flonum-const.o flonum-copy.o flonum-mult.o strstr.o bignum-copy.o \
gdb.o gdb-file.o gdb-symbols.o gdb-blocks.o obstack.o \
gdb-lines.o
a: $(DEFAULT_GAS)
@rm -f a
@ln $(DEFAULT_GAS) a
# SPARC GAS ------------------------------------------------------------------
v = sparc.o atof-m68k.o write-sparc.o read-sparc.o
V = sparc.c sparc.h sparc-opcode.h
atof-m68k.o: flonum.h
sparc.o: sparc.c sparc.h sparc-opcode.h as.h frags.h struc-symbol.h
sparc.o: flonum.h expr.h hash.h md.h write.h read.h symbols.h
$(CC) -c $(CFLAGS) -DSPARC sparc.c
write-sparc.o: write.c
$(CC) -c -DSPARC $(CFLAGS) $<
mv write.o write-sparc.o
read-sparc.o: read.c
$(CC) -c -DSPARC $(CFLAGS) $<
mv read.o read-sparc.o
asparc: $a $v
$(CC) -o asparc $(LDFLAGS) $a $v $(LOADLIBES)
# NS32K GAS ------------------------------------------------------------------
w = ns32k.o atof-ns32k.o write.o read.o
W = ns32k.c atof-ns32k.c ns32k-opcode.h
atof-ns32k.o: flonum.h
ns32k.o: as.h frags.h struc-symbol.h flonum.h expr.h md.h hash.h
ns32k.o: write.h symbols.h ns32k-opcode.h
a32k: $a $w
$(CC) -o a32k $(LDFLAGS) $a $w $(LOADLIBES)
# 80386 GAS ------------------------------------------------------------------
x = i386.o atof-i386.o write.o read.o
X = i386.c atof-i386.c i386.h i386-opcode.h
i386.o: i386.c as.h read.h flonum.h frags.h struc-symbol.h expr.h
i386.o: symbols.h hash.h md.h i386.h i386-opcode.h
$(CC) $(CFLAGS) $(OPTIONS) -c $<
atof-i386.o: flonum.h
a386: $a $x
$(CC) -o a386 $(LDFLAGS) $a $x $(LOADLIBES)
# 68020 GAS ------------------------------------------------------------------
y = m68k.o atof-m68k.o write.o read.o
Y = m68k.c atof-m68k.c m68k-opcode.h m-hpux.h m-sun3.h m-generic.h
atof-m68k.o: flonum.h
m68k.o: m68k.c a.out.h as.h expr.h flonum.h frags.h hash.h
m68k.o: m68k-opcode.h m68k.h md.h obstack.h struc-symbol.h
$(CC) $(CFLAGS) $(OPTIONS) -c $<
all:a68
mv a68 gcc-as
a68: $a $y
# $(CC) -o a68 $(LDFLAGS) $a $y $(LOADLIBES)
$(LD) -o a68 ${BLD_CRT0} $a $y -L/lib $(LOADLIBES) -lc
# VAX GAS --------------------------------------------------------------------
z = vax.o atof-vax.o write.o read.o
Z = vax.c atof-vax.c vax-opcode.h vax-inst.h make-gas.com objrecdef.h vms.c
vax.o: vax.c a.out.h as.h expr.h flonum.h frags.h md.h obstack.h
vax.o: read.h struc-symbol.h symbols.h vax-inst.h vax-opcode.h
atof-vax.o: as.h flonum.h read.h
avax: $a $z
$(CC) -o avax $(LDFLAGS) $a $z $(LOADLIBES)
# global files ---------------------------------------------------------------
messages.o: messages.c
$(CC) $(CFLAGS) $(OPTIONS) -c $<
hash.o: hash.c
$(CC) $(CFLAGS) -Derror=as_fatal -c $<
xmalloc.o: xmalloc.c
$(CC) $(CFLAGS) -Derror=as_fatal -c $<
xrealloc.o: xrealloc.c
$(CC) $(CFLAGS) -Derror=as_fatal -c $<
A =\
as.c xrealloc.c xmalloc.c hash.c hex-value.c \
atof-generic.c append.c messages.c expr.c bignum-copy.c \
frags.c input-file.c input-scrub.c output-file.c read.c \
subsegs.c symbols.c write.c strstr.c \
flonum-const.c flonum-copy.c flonum-mult.c app.c version.c \
gdb.c gdb-file.c gdb-symbols.c gdb-blocks.c obstack.c \
gdb-lines.c
H = \
a.out.h as.h bignum.h expr.h flonum.h \
frags.h hash.h input-file.h md.h \
obstack.h read.h struc-symbol.h subsegs.h \
symbols.h write.h
gas-dist.tar: COPYING README $A $H $Z $Y $X $W $V Makefile
-rm -r gas-dist
mkdir gas-dist
ln COPYING README $A $H $Z $Y $X $W $V Makefile gas-dist
tar cvhf gas-dist.tar gas-dist
gas-dist.tar.Z: gas-dist.tar
compress < gas-dist.tar > gas-dist.tar.Z
clean:
rm -f a avax a68 a386 a32k asparc $a $v $w $x $y $z a core gmon.out bugs a.out
dist: gas-dist.tar gas-dist.tar.Z
install: a
cp a ${BIN_DIR}/gas
# General .o-->.h dependencies
app.o: as.h
as.o: a.out.h as.h read.h struc-symbol.h write.h
atof-generic.o: flonum.h
bignum-copy.o: bignum.h
expr.o: a.out.h as.h expr.h flonum.h obstack.h read.h struc-symbol.h
expr.o: symbols.h
flonum-const.o: flonum.h
flonum-copy.o: flonum.h
flonum-mult.o: flonum.h
flonum-normal.o:flonum.h
flonum-print.o: flonum.h
frags.o: a.out.h as.h frags.h obstack.h struc-symbol.h subsegs.h
gdb.o: as.h
gdb-blocks.o: as.h
gdb-lines.o: as.h frags.h obstack.h
gdb-symbols.o: a.out.h as.h struc-symbol.h
hash.o: hash.h
input-file.o: input-file.h
input-scrub.o: as.h input-file.h read.h
messages.o: as.h
obstack.o: obstack.h
read.o: a.out.h as.h expr.h flonum.h frags.h hash.h md.h obstack.h
read.o: read.h struc-symbol.h symbols.h
subsegs.o: a.out.h as.h frags.h obstack.h struc-symbol.h subsegs.h write.h
symbols.o: a.out.h as.h frags.h hash.h obstack.h struc-symbol.h symbols.h
write.o: a.out.h as.h md.h obstack.h struc-symbol.h subsegs.h
write.o: symbols.h write.h
flonum.h: bignum.h