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
|
# Makefile for trampoline
#### Start of system configuration section. ####
HOST = @host@
CPU = @HOST_CPU_C_ABI@
OS = @host_os@
# Directories used by "make":
srcdir = @srcdir@
# Directories used by "make install":
prefix = @prefix@
local_prefix = /usr/local
exec_prefix = @exec_prefix@
libdir = @libdir@
includedir = @includedir@
mandir = @mandir@
datadir = @datadir@
datarootdir = @datarootdir@
htmldir = $(datadir)/html
# Programs used by "make":
CC = @CC@
CFLAGS = @CFLAGS@
CPP = @CPP@
INCLUDES = -I. -I$(srcdir)
|
|
<
|
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
|
# Makefile for trampoline
#### Start of system configuration section. ####
HOST = @host@
CPU = @host_cpu@
OS = @host_os@
# Directories used by "make":
srcdir = @srcdir@
# Directories used by "make install":
prefix = @prefix@
local_prefix = /usr/local
exec_prefix = @exec_prefix@
libdir = @libdir@
includedir = @includedir@
mandir = @mandir@
datadir = @datadir@
htmldir = $(datadir)/html
# Programs used by "make":
CC = @CC@
CFLAGS = @CFLAGS@
CPP = @CPP@
INCLUDES = -I. -I$(srcdir)
|
︙ | | | ︙ | |
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
|
tramp-hppa.o : $(srcdir)/tramp-hppa.s
$(CC) @GCC_X_NONE@ -c $(srcdir)/tramp-hppa.s
tramp-s390.o : $(srcdir)/tramp-s390.s
$(CC) @GCC_X_NONE@ -c $(srcdir)/tramp-s390.s
tramp-powerpc.o : tramp-powerpc.s
$(CC) @GCC_X_NONE@ -c tramp-powerpc.s
tramp-powerpc.s : $(srcdir)/tramp-powerpc.old.S $(srcdir)/tramp-powerpc.new.S
case "$(OS)" in \
aix3*) syntax=old;; \
*) syntax=new;; \
esac; \
$(CPP) $(srcdir)/tramp-powerpc.$${syntax}.S > tramp-powerpc.s
tramp-powerpc64.o : tramp-powerpc64.s
$(CC) @GCC_X_NONE@ -c tramp-powerpc64.s
tramp-powerpc64.s : $(srcdir)/tramp-powerpc64.new.S
$(CPP) $(srcdir)/tramp-powerpc64.new.S > tramp-powerpc64.s
tramp-ia64.o : $(srcdir)/tramp-ia64.s
$(CC) @GCC_X_NONE@ -c $(srcdir)/tramp-ia64.s
cache-sparc.o : cache-sparc.s
$(CC) @GCC_X_NONE@ -c cache-sparc.s
|
|
|
|
<
<
<
<
<
<
|
|
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
tramp-hppa.o : $(srcdir)/tramp-hppa.s
$(CC) @GCC_X_NONE@ -c $(srcdir)/tramp-hppa.s
tramp-s390.o : $(srcdir)/tramp-s390.s
$(CC) @GCC_X_NONE@ -c $(srcdir)/tramp-s390.s
tramp-rs6000.o : tramp-rs6000.s
$(CC) @GCC_X_NONE@ -c tramp-rs6000.s
tramp-rs6000.s : $(srcdir)/tramp-rs6000.old.S $(srcdir)/tramp-rs6000.new.S
case "$(OS)" in \
aix3*) syntax=old;; \
*) syntax=new;; \
esac; \
$(CPP) $(srcdir)/tramp-rs6000.$${syntax}.S > tramp-rs6000.s
tramp-ia64.o : $(srcdir)/tramp-ia64.s
$(CC) @GCC_X_NONE@ -c $(srcdir)/tramp-ia64.s
cache-sparc.o : cache-sparc.s
$(CC) @GCC_X_NONE@ -c cache-sparc.s
|
︙ | | | ︙ | |
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
|
cache-alpha.o : $(srcdir)/cache-alpha.s
$(CC) @GCC_X_NONE@ -c $(srcdir)/cache-alpha.s
cache-hppa.o : $(srcdir)/cache-hppa.s
$(CC) @GCC_X_NONE@ -c $(srcdir)/cache-hppa.s
cache-arm.o : $(srcdir)/cache-arm.s
$(CC) @GCC_X_NONE@ -c $(srcdir)/cache-arm.s
cache-armel.o : $(srcdir)/cache-armel.s
$(CC) @GCC_X_NONE@ -c $(srcdir)/cache-armel.s
cache-powerpc.o : $(srcdir)/cache-powerpc-sysv4.s $(srcdir)/cache-powerpc-macos.s
case "$(OS)" in \
macos* | darwin*) syntax=macos;; \
*) syntax=sysv4;; \
esac; \
$(CC) @GCC_X_NONE@ -c $(srcdir)/cache-powerpc-$${syntax}.s ; mv cache-powerpc-$${syntax}.o cache-powerpc.o
cache-convex.o : $(srcdir)/cache-convex.s
$(CC) @GCC_X_NONE@ -c $(srcdir)/cache-convex.s
libtrampoline.a : $(OBJECTS)
$(RM) libtrampoline.a
$(AR) $(AR_FLAGS) libtrampoline.a $(OBJECTS)
$(RANLIB) libtrampoline.a
install : all force
mkdir -p $(DESTDIR)$(prefix)
mkdir -p $(DESTDIR)$(exec_prefix)
mkdir -p $(DESTDIR)$(libdir)
$(INSTALL_DATA) libtrampoline.a $(DESTDIR)$(libdir)/libtrampoline.a
mkdir -p $(DESTDIR)$(includedir)
$(INSTALL_DATA) trampoline.h $(DESTDIR)$(includedir)/trampoline.h
mkdir -p $(DESTDIR)$(mandir)
mkdir -p $(DESTDIR)$(mandir)/man3
$(INSTALL_DATA) $(srcdir)/trampoline.3 $(DESTDIR)$(mandir)/man3/trampoline.3
mkdir -p $(DESTDIR)$(datadir)
mkdir -p $(DESTDIR)$(htmldir)
$(INSTALL_DATA) $(srcdir)/trampoline.html $(DESTDIR)$(htmldir)/trampoline.html
installdirs : force
mkdir -p $(DESTDIR)$(prefix)
mkdir -p $(DESTDIR)$(exec_prefix)
mkdir -p $(DESTDIR)$(libdir)
mkdir -p $(DESTDIR)$(includedir)
mkdir -p $(DESTDIR)$(mandir)
mkdir -p $(DESTDIR)$(mandir)/man3
mkdir -p $(DESTDIR)$(datadir)
mkdir -p $(DESTDIR)$(htmldir)
uninstall : force
$(RM) $(DESTDIR)$(libdir)/libtrampoline.a
$(RM) $(DESTDIR)$(includedir)/trampoline.h
$(RM) $(DESTDIR)$(mandir)/man3/trampoline.3
$(RM) $(DESTDIR)$(htmldir)/trampoline.html
|
|
<
<
<
<
<
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
cache-alpha.o : $(srcdir)/cache-alpha.s
$(CC) @GCC_X_NONE@ -c $(srcdir)/cache-alpha.s
cache-hppa.o : $(srcdir)/cache-hppa.s
$(CC) @GCC_X_NONE@ -c $(srcdir)/cache-hppa.s
cache-rs6000.o : $(srcdir)/cache-rs6000-sysv4.s $(srcdir)/cache-rs6000-macos.s
case "$(OS)" in \
macos* | darwin*) syntax=macos;; \
*) syntax=sysv4;; \
esac; \
$(CC) @GCC_X_NONE@ -c $(srcdir)/cache-rs6000-$${syntax}.s ; mv cache-rs6000-$${syntax}.o cache-rs6000.o
cache-convex.o : $(srcdir)/cache-convex.s
$(CC) @GCC_X_NONE@ -c $(srcdir)/cache-convex.s
libtrampoline.a : $(OBJECTS)
$(RM) libtrampoline.a
$(AR) $(AR_FLAGS) libtrampoline.a $(OBJECTS)
$(RANLIB) libtrampoline.a
install : all force
if [ ! -d $(DESTDIR)$(prefix) ] ; then mkdir $(DESTDIR)$(prefix) ; fi
if [ ! -d $(DESTDIR)$(exec_prefix) ] ; then mkdir $(DESTDIR)$(exec_prefix) ; fi
if [ ! -d $(DESTDIR)$(libdir) ] ; then mkdir $(DESTDIR)$(libdir) ; fi
$(INSTALL_DATA) libtrampoline.a $(DESTDIR)$(libdir)/libtrampoline.a
if [ ! -d $(DESTDIR)$(includedir) ] ; then mkdir $(DESTDIR)$(includedir) ; fi
$(INSTALL_DATA) trampoline.h $(DESTDIR)$(includedir)/trampoline.h
if [ ! -d $(DESTDIR)$(mandir) ] ; then mkdir $(DESTDIR)$(mandir) ; fi
if [ ! -d $(DESTDIR)$(mandir)/man3 ] ; then mkdir $(DESTDIR)$(mandir)/man3 ; fi
$(INSTALL_DATA) $(srcdir)/trampoline.3 $(DESTDIR)$(mandir)/man3/trampoline.3
if [ ! -d $(DESTDIR)$(datadir) ] ; then mkdir $(DESTDIR)$(datadir) ; fi
if [ ! -d $(DESTDIR)$(htmldir) ] ; then mkdir $(DESTDIR)$(htmldir) ; fi
$(INSTALL_DATA) $(srcdir)/trampoline.html $(DESTDIR)$(htmldir)/trampoline.html
installdirs : force
if [ ! -d $(DESTDIR)$(prefix) ] ; then mkdir $(DESTDIR)$(prefix) ; fi
if [ ! -d $(DESTDIR)$(exec_prefix) ] ; then mkdir $(DESTDIR)$(exec_prefix) ; fi
if [ ! -d $(DESTDIR)$(libdir) ] ; then mkdir $(DESTDIR)$(libdir) ; fi
if [ ! -d $(DESTDIR)$(includedir) ] ; then mkdir $(DESTDIR)$(includedir) ; fi
if [ ! -d $(DESTDIR)$(mandir) ] ; then mkdir $(DESTDIR)$(mandir) ; fi
if [ ! -d $(DESTDIR)$(mandir)/man3 ] ; then mkdir $(DESTDIR)$(mandir)/man3 ; fi
if [ ! -d $(DESTDIR)$(datadir) ] ; then mkdir $(DESTDIR)$(datadir) ; fi
if [ ! -d $(DESTDIR)$(htmldir) ] ; then mkdir $(DESTDIR)$(htmldir) ; fi
uninstall : force
$(RM) $(DESTDIR)$(libdir)/libtrampoline.a
$(RM) $(DESTDIR)$(includedir)/trampoline.h
$(RM) $(DESTDIR)$(mandir)/man3/trampoline.3
$(RM) $(DESTDIR)$(htmldir)/trampoline.html
|
︙ | | | ︙ | |
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
touch tests.passed.$(HOST)
extracheck : check
mostlyclean : clean
clean : force
$(RM) $(OBJECTS) tramp-powerpc.s cache-sparc.s cache-sparc64.s libtrampoline.a core
$(RM) test1.o test1 test2.o test2
distclean : clean
$(RM) config.status config.log config.cache Makefile config.h trampoline.h tests.passed.*
maintainer-clean : distclean
force :
|
|
|
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
touch tests.passed.$(HOST)
extracheck : check
mostlyclean : clean
clean : force
$(RM) $(OBJECTS) tramp-rs6000.s cache-sparc.s cache-sparc64.s libtrampoline.a core
$(RM) test1.o test1 test2.o test2
distclean : clean
$(RM) config.status config.log config.cache Makefile config.h trampoline.h tests.passed.*
maintainer-clean : distclean
force :
|