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 callback
#### Start of system configuration section. ####
HOST = @host@
CPU = @HOST_CPU_C_ABI@
# 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
|
# Makefile for callback
#### Start of system configuration section. ####
HOST = @host@
CPU = @host_cpu@
# 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)
|
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
|
# Needed by $(LIBTOOL).
top_builddir = .
all : all-subdirs callback.h vacall_r.h trampoline_r.h libcallback.la $(srcdir)/callback.3 $(srcdir)/callback.html
all-subdirs : force
cd @subdir@ && $(MAKE) all
callback.h :
$(LN_S) $(srcdir)/callback.h.in callback.h
vacall_r.h :
$(LN_S) vacall_r/vacall_r.h vacall_r.h
trampoline_r.h :
$(LN_S) trampoline_r/trampoline_r.h trampoline_r.h
libcallback.la : vacall_r/libvacall.la trampoline_r/libtrampoline.la
$(LIBTOOL_LINK) $(CC) -static -o libcallback.la -rpath $(libdir) vacall_r/vacall.lo vacall_r/misc.lo vacall_r/structcpy.lo trampoline_r/*.lo
# Installs the library and include files only. Typically called with only
# $(libdir) and $(includedir) - don't use $(prefix) and $(exec_prefix) here.
install-lib : all force
cd @subdir@ && $(MAKE) install-lib libdir='$(libdir)' includedir='$(includedir)'
mkdir -p $(libdir)
$(LIBTOOL_INSTALL) $(INSTALL_DATA) libcallback.la $(libdir)/libcallback.la
mkdir -p $(includedir)
$(INSTALL_DATA) callback.h $(includedir)/callback.h
install : force
cd @subdir@ && $(MAKE) install
mkdir -p $(DESTDIR)$(prefix)
mkdir -p $(DESTDIR)$(exec_prefix)
mkdir -p $(DESTDIR)$(libdir)
$(LIBTOOL_INSTALL) $(INSTALL_DATA) libcallback.la $(DESTDIR)$(libdir)/libcallback.la
mkdir -p $(DESTDIR)$(includedir)
$(INSTALL_DATA) callback.h $(DESTDIR)$(includedir)/callback.h
mkdir -p $(DESTDIR)$(mandir)
mkdir -p $(DESTDIR)$(mandir)/man3
$(INSTALL_DATA) $(srcdir)/callback.3 $(DESTDIR)$(mandir)/man3/callback.3
mkdir -p $(DESTDIR)$(datadir)
mkdir -p $(DESTDIR)$(htmldir)
$(INSTALL_DATA) $(srcdir)/callback.html $(DESTDIR)$(htmldir)/callback.html
installdirs : force
cd @subdir@ && $(MAKE) installdirs
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
cd @subdir@ && $(MAKE) uninstall
$(LIBTOOL_UNINSTALL) $(RM) $(DESTDIR)$(libdir)/libcallback.la
$(RM) $(DESTDIR)$(includedir)/callback.h
$(RM) $(DESTDIR)$(mandir)/man3/callback.3
$(RM) $(DESTDIR)$(htmldir)/callback.html
minitests.o : $(srcdir)/minitests.c $(srcdir)/tests.c callback.h vacall_r.h trampoline_r.h
$(CC) $(CFLAGS) $(INCLUDES) -c $(srcdir)/minitests.c
minitests.s : $(srcdir)/minitests.c $(srcdir)/tests.c callback.h vacall_r.h trampoline_r.h
$(CC) $(CFLAGS) $(INCLUDES) -S $(srcdir)/minitests.c
minitests : minitests.o libcallback.la
$(LIBTOOL_LINK) $(CC) $(CFLAGS) @GCC_X_NONE@ minitests.o libcallback.la -o minitests
check-subdirs : force
cd @subdir@ && $(MAKE) check
check : all check-subdirs minitests
./minitests > minitests.out
LC_ALL=C uniq -u < minitests.out > minitests.output.$(HOST)
test '!' -s minitests.output.$(HOST)
tests.o : $(srcdir)/tests.c callback.h vacall_r.h trampoline_r.h
$(CC) $(CFLAGS) $(INCLUDES) -c $(srcdir)/tests.c
tests.s : $(srcdir)/tests.c callback.h vacall_r.h trampoline_r.h
$(CC) $(CFLAGS) $(INCLUDES) -S $(srcdir)/tests.c
tests : tests.o libcallback.la
$(LIBTOOL_LINK) $(CC) $(CFLAGS) @GCC_X_NONE@ tests.o libcallback.la -o tests
extracheck-subdirs : force
cd @subdir@ && $(MAKE) extracheck
extracheck : all extracheck-subdirs tests
./tests > tests.out
LC_ALL=C uniq -u < tests.out > tests.output.$(HOST)
test '!' -s tests.output.$(HOST)
mostlyclean : force
cd @subdir@ && $(MAKE) mostlyclean
clean-subdirs : force
cd @subdir@ && $(MAKE) clean
clean : clean-subdirs
$(RM) *.o *.lo core
$(RM) callback.h vacall_r.h trampoline_r.h libcallback.*
$(RM) -r .libs _libs
$(RM) minitests.o minitests.s minitests minitests.out
$(RM) tests.o tests.s tests tests.out
distclean-subdirs : force
cd @subdir@ && if test -f Makefile; then $(MAKE) distclean; fi
distclean : clean distclean-subdirs
$(RM) config.status config.log config.cache Makefile libtool minitests.output.* tests.output.*
maintainer-clean-subdirs : force
cd @subdir@ && if test -f Makefile; then $(MAKE) maintainer-clean; fi
maintainer-clean : distclean maintainer-clean-subdirs
$(RM) config.status config.log config.cache Makefile
force :
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
>
|
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
|
# Needed by $(LIBTOOL).
top_builddir = .
all : all-subdirs callback.h vacall_r.h trampoline_r.h libcallback.la $(srcdir)/callback.3 $(srcdir)/callback.html
all-subdirs : force
cd @subdir@; $(MAKE) all
callback.h :
$(LN_S) $(srcdir)/callback.h.in callback.h
vacall_r.h :
$(LN_S) vacall_r/vacall_r.h vacall_r.h
trampoline_r.h :
$(LN_S) trampoline_r/trampoline_r.h trampoline_r.h
libcallback.la : vacall_r/libvacall.la trampoline_r/libtrampoline.la
$(LIBTOOL_LINK) $(CC) -o libcallback.la -rpath $(libdir) vacall_r/vacall.lo vacall_r/misc.lo vacall_r/structcpy.lo trampoline_r/*.lo
# Installs the library and include files only. Typically called with only
# $(libdir) and $(includedir) - don't use $(prefix) and $(exec_prefix) here.
install-lib : all force
cd @subdir@; $(MAKE) install-lib libdir='$(libdir)' includedir='$(includedir)'
if [ ! -d $(libdir) ] ; then mkdir $(libdir) ; fi
$(LIBTOOL_INSTALL) $(INSTALL_DATA) libcallback.la $(libdir)/libcallback.la
if [ ! -d $(includedir) ] ; then mkdir $(includedir) ; fi
$(INSTALL_DATA) callback.h $(includedir)/callback.h
install : force
cd @subdir@; $(MAKE) install
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
$(LIBTOOL_INSTALL) $(INSTALL_DATA) libcallback.la $(DESTDIR)$(libdir)/libcallback.la
if [ ! -d $(DESTDIR)$(includedir) ] ; then mkdir $(DESTDIR)$(includedir) ; fi
$(INSTALL_DATA) callback.h $(DESTDIR)$(includedir)/callback.h
if [ ! -d $(DESTDIR)$(mandir) ] ; then mkdir $(DESTDIR)$(mandir) ; fi
if [ ! -d $(DESTDIR)$(mandir)/man3 ] ; then mkdir $(DESTDIR)$(mandir)/man3 ; fi
$(INSTALL_DATA) $(srcdir)/callback.3 $(DESTDIR)$(mandir)/man3/callback.3
if [ ! -d $(DESTDIR)$(datadir) ] ; then mkdir $(DESTDIR)$(datadir) ; fi
if [ ! -d $(DESTDIR)$(htmldir) ] ; then mkdir $(DESTDIR)$(htmldir) ; fi
$(INSTALL_DATA) $(srcdir)/callback.html $(DESTDIR)$(htmldir)/callback.html
installdirs : force
cd @subdir@; $(MAKE) installdirs
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
cd @subdir@; $(MAKE) uninstall
$(LIBTOOL_UNINSTALL) $(RM) $(DESTDIR)$(libdir)/libcallback.la
$(RM) $(DESTDIR)$(includedir)/callback.h
$(RM) $(DESTDIR)$(mandir)/man3/callback.3
$(RM) $(DESTDIR)$(htmldir)/callback.html
minitests.o : $(srcdir)/minitests.c $(srcdir)/tests.c callback.h vacall_r.h trampoline_r.h
$(CC) $(CFLAGS) $(INCLUDES) -c $(srcdir)/minitests.c
minitests.s : $(srcdir)/minitests.c $(srcdir)/tests.c callback.h vacall_r.h trampoline_r.h
$(CC) $(CFLAGS) $(INCLUDES) -S $(srcdir)/minitests.c
minitests : minitests.o libcallback.la
$(LIBTOOL_LINK) $(CC) $(CFLAGS) @GCC_X_NONE@ minitests.o libcallback.la -o minitests
check-subdirs : force
cd @subdir@; $(MAKE) check
check : all check-subdirs minitests
./minitests > minitests.out
LC_ALL=C uniq -u < minitests.out > minitests.output.$(HOST)
test '!' -s minitests.output.$(HOST)
tests.o : $(srcdir)/tests.c callback.h vacall_r.h trampoline_r.h
$(CC) $(CFLAGS) $(INCLUDES) -c $(srcdir)/tests.c
tests.s : $(srcdir)/tests.c callback.h vacall_r.h trampoline_r.h
$(CC) $(CFLAGS) $(INCLUDES) -S $(srcdir)/tests.c
tests : tests.o libcallback.la
$(LIBTOOL_LINK) $(CC) $(CFLAGS) @GCC_X_NONE@ tests.o libcallback.la -o tests
extracheck-subdirs : force
cd @subdir@; $(MAKE) extracheck
extracheck : all extracheck-subdirs tests
./tests > tests.out
LC_ALL=C uniq -u < tests.out > tests.output.$(HOST)
test '!' -s tests.output.$(HOST)
mostlyclean : force
cd @subdir@; $(MAKE) mostlyclean
clean-subdirs : force
cd @subdir@; $(MAKE) clean
clean : clean-subdirs
$(RM) *.o *.lo core
$(RM) callback.h vacall_r.h trampoline_r.h libcallback.*
$(RM) -r .libs _libs
$(RM) minitests.o minitests.s minitests minitests.out
$(RM) tests.o tests.s tests tests.out
distclean-subdirs : force
cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
distclean : clean distclean-subdirs
$(RM) config.status config.log config.cache Makefile libtool minitests.output.* tests.output.*
maintainer-clean-subdirs : force
cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
maintainer-clean : distclean maintainer-clean-subdirs
$(RM) config.status config.log config.cache Makefile
force :
|