Makefile
3.96 KB
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
# Generated automatically from Makefile.in by configure.
#Copyright 1989, 1990, 1991, 1992, 1993, 1995 Free Software Foundation, Inc.
# This file is part of GDB.
# This program 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 2 of the License, or
# (at your option) any later version.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
prefix = /usr/local
exec_prefix = ${prefix}
host_alias = sun4
target_alias = sun4
program_transform_name = s,x,x,
bindir = $(exec_prefix)/bin
libdir = $(exec_prefix)/lib
tooldir = $(libdir)/$(target_alias)
datadir = $(prefix)/share
mandir = $(prefix)/man
man1dir = $(mandir)/man1
man2dir = $(mandir)/man2
man3dir = $(mandir)/man3
man4dir = $(mandir)/man4
man5dir = $(mandir)/man5
man6dir = $(mandir)/man6
man7dir = $(mandir)/man7
man8dir = $(mandir)/man8
man9dir = $(mandir)/man9
infodir = $(prefix)/info
includedir = $(prefix)/include
SHELL = /bin/sh
INSTALL = /bin/sh /sourceware/snapshot-tmp/gdbadmin-tmp/gdb_6_0-branch/6.0/gdb/src/install-sh -c
INSTALL_PROGRAM = /bin/sh /sourceware/snapshot-tmp/gdbadmin-tmp/gdb_6_0-branch/6.0/gdb/src/install-sh -c
INSTALL_DATA = /bin/sh /sourceware/snapshot-tmp/gdbadmin-tmp/gdb_6_0-branch/6.0/gdb/src/install-sh -c -m 644
CC=gcc
# Directory containing source files.
srcdir = .././sparclite
VPATH = .././sparclite
# Where is the "include" directory? Traditionally ../include or ./include
INCLUDE_DIR = ${srcdir}/../../include
# Where is the "-liberty" library? Typically in ../libiberty.
LIBIBERTY = ../../libiberty/libiberty.a
# Where is the BFD library? Typically in ../../bfd.
BFD_DIR = ../../bfd
BFD = $(BFD_DIR)/libbfd.a
BFD_SRC = $(srcdir)/$(BFD_DIR)
BFD_CFLAGS = -I$(BFD_DIR) -I(BFD_SRC)
# All the includes used for CFLAGS and for lint.
# -I. for config files.
# -I${srcdir} possibly for regex.h also.
INCLUDE_CFLAGS = -I. -I${srcdir} -I$(INCLUDE_DIR)
# CFLAGS is specifically reserved for setting from the command line
# when running make. I.E. "make USER_CFLAGS=-Wmissing-prototypes".
CFLAGS = -g
# INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
INTERNAL_CFLAGS = $(CFLAGS) -I$(BFD_DIR) $(INCLUDE_CFLAGS) $(USER_CFLAGS) -DHAVE_TERMIOS=1 -DHAVE_TERMIO=1 -DHAVE_SGTTY=1
# None of the things in CFLAGS will do any harm, and on some systems
# (e.g. SunOS4) it is important to use the MH_CFLAGS.
LDFLAGS = $(CFLAGS)
# Libraries and corresponding dependencies for compiling gdb.
CLIBS = ${BFD} ${LIBIBERTY}
CDEPS = ${BFD} ${LIBIBERTY}
# Prevent Sun make from putting in the machine type. Setting
# TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
.c.o:
${CC} -c ${INTERNAL_CFLAGS} $<
PROGS = aload eload
.PHONY: all info install install-info
all: $(PROGS)
info:
# This does not use program_transform_name because there only needs to
# be one aload. Even if aload ends up being useful for more than one
# target, perhaps one aload binary can be useful with all of them.
# FIXME: not true, there can be both aout and coff loaders.
install: $(PROGS)
if [ "$(PROGS)" != "" ]; then \
for i in $(PROGS) ""; do \
$(INSTALL_PROGRAM) $$i $(bindir)/$$i; \
done; \
fi
install-info:
aload: aload.o
$(CC) $(CFLAGS) -o aload aload.o $(CLIBS)
eload: eload.o
$(CC) $(CFLAGS) -o eload eload.o $(CLIBS)
aload.o: aload.c
eload.o: eload.c
mostlyclean:
clean: mostlyclean
rm -f *.o $(PROGS)
distclean: clean
rm -f config.log config.cache
maintainer-clean realclean: distclean
Makefile: Makefile.in config.status
$(SHELL) config.status
config.status: configure
$(SHELL) config.status --recheck