forked from WolfgangSt/libelf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.in
198 lines (156 loc) · 5.77 KB
/
Makefile.in
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
# Makefile for libelf.
# Copyright (C) 1995 - 2005 Michael Riepe
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library 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
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
# @(#) $Id: Makefile.in,v 1.30 2008/05/23 08:17:56 michael Exp $
instroot =
prefix = @prefix@
exec_prefix = @exec_prefix@
libdir = @libdir@
pkgdir = $(libdir)/pkgconfig
MV = mv -f
RM = rm -f
LN_S = @LN_S@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
CC = @CC@
CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
# no user serviceable parts below
PACKAGE = @PACKAGE@
VERSION = @VERSION@
SHELL = /bin/sh
@SET_MAKE@
srcdir = @srcdir@
VPATH = @srcdir@
SUBDIRS = lib @POSUB@
DISTSUBDIRS = lib po
DISTFILES = \
acconfig.h aclocal.m4 ChangeLog config.guess config.h.in \
config.sub configure configure.in COPYING.LIB INSTALL install-sh \
Makefile.in mkinstalldirs README stamp-h.in VERSION libelf.pc.in
all: all-recursive all-local
check: check-recursive check-local
install: install-recursive install-local
uninstall: uninstall-recursive uninstall-local
mostlyclean: mostlyclean-recursive mostlyclean-local
clean: clean-recursive clean-local
distclean: distclean-recursive distclean-local
maintainer-clean: maintainer-clean-recursive maintainer-clean-local
install-compat uninstall-compat:
cd lib && $(MAKE) $@
all-recursive check-recursive install-recursive uninstall-recursive \
clean-recursive distclean-recursive mostlyclean-recursive \
maintainer-clean-recursive:
@subdirs="$(SUBDIRS)"; for subdir in $$subdirs; do \
target=`echo $@|sed 's,-recursive,,'`; \
echo making $$target in $$subdir; \
(cd $$subdir && $(MAKE) $$target) || exit 1; \
done
all-local:
check-local:
install-local: $(srcdir)/mkinstalldirs libelf.pc
$(SHELL) $(srcdir)/mkinstalldirs $(instroot)$(pkgdir)
$(INSTALL_DATA) libelf.pc $(instroot)$(pkgdir)
uninstall-local:
$(RM) $(instroot)$(pkgdir)/libelf.pc
mostlyclean-local:
$(RM) *~ core errlist
clean-local: mostlyclean-local
distclean-local: clean-local
$(RM) config.cache config.h config.log config.status stamp-h
$(RM) Makefile
$(RM) libelf.pc
maintainer-clean-local: distclean-local
@echo "This command is intended for maintainers to use;"
@echo "it deletes files that may require special tools to rebuild."
$(RM) config.h.in configure stamp-dist
$(RM) -r $(distdir)
# maintainer only
MAINT = @MAINT@
distdir = $(PACKAGE)-$(VERSION)
DISTPERMS = --owner=root --group=root --numeric-owner
$(MAINT)dist: ./stamp-dist
$(MAINT)./stamp-dist: $(DISTFILES)
$(RM) -r $(distdir)
mkdir $(distdir)
files="$(DISTFILES)"; for file in $$files; do \
ln $(srcdir)/$$file $(distdir) || \
cp -p $(srcdir)/$$file $(distdir) || exit 1; \
done
subdirs="$(DISTSUBDIRS)"; for subdir in $$subdirs; do \
(cd $$subdir && $(MAKE) dist) || exit 1; \
done
cd $(distdir) && \
find . -type f ! -name MANIFEST -exec wc -c {} \; | \
sed 's, \./, ,' | sort -k2 >MANIFEST
-$(RM) $(distdir).tar.gz.bak $(PACKAGE).tar.gz
-$(MV) $(distdir).tar.gz $(distdir).tar.gz.bak
tar cvohfz $(distdir).tar.gz $(DISTPERMS) $(distdir)
$(LN_S) $(distdir).tar.gz $(PACKAGE).tar.gz
$(RM) stamp-dist && echo timestamp > stamp-dist
$(MAINT)check-dist:
$(RM) -r disttest
mkdir disttest
@echo 'unset CC CFLAGS CPPFLAGS LDFLAGS LIBS' >disttest/config.site
cd disttest && CONFIG_SITE=config.site ../$(distdir)/configure
$(MAKE) -C disttest
$(MAKE) -C disttest check
$(MAKE) -C disttest dist
.PHONY: tags
tags:
rm -f tags
ctags lib/*.c lib/*.h
TRACKFS = trackfs
trackinstall:
$(TRACKFS) -l install.log -b backup.cpio $(MAKE) install
# For the justification of the following Makefile rules, see node
# `Automatic Remaking' in GNU Autoconf documentation.
$(MAINT)$(srcdir)/configure: $(srcdir)/configure.in $(srcdir)/aclocal.m4
$(RM) $(srcdir)/configure
cd $(srcdir) && autoconf
$(MAINT)$(srcdir)/config.h.in: $(srcdir)/stamp-h.in
$(MAINT)$(srcdir)/stamp-h.in: $(srcdir)/configure.in $(srcdir)/acconfig.h
$(RM) $(srcdir)/config.h.in
cd $(srcdir) && autoheader
cd $(srcdir) && $(RM) stamp-h.in && echo timestamp > stamp-h.in
$(MAINT)config.h: stamp-h
$(MAINT)stamp-h: config.h.in config.status
CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
$(RM) stamp-h && echo timestamp > stamp-h
$(MAINT)Makefile: Makefile.in config.status
CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
$(MAINT)lib/Makefile: lib/Makefile.in config.status
CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
$(MAINT)lib/sys_elf.h: lib/stamp-h
$(MAINT)lib/stamp-h: lib/sys_elf.h.in config.status
CONFIG_FILES= CONFIG_HEADERS=lib/sys_elf.h ./config.status
$(RM) lib/stamp-h && echo timestamp > lib/stamp-h
$(MAINT)po/Makefile: po/Makefile.in config.status
CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
$(MAINT)libelf.pc: libelf.pc.in config.status
CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
RECHECK_FLAGS = CC='$(CC)' CPPFLAGS='$(CPPFLAGS)' \
CFLAGS='$(CFLAGS)' LDFLAGS='$(LDFLAGS)' LIBS='$(LIBS)'
$(MAINT)config.status: configure config.h.in VERSION
$(RECHECK_FLAGS) ./config.status --recheck
$(MAINT)reconfig:
$(RM) config.cache
$(RECHECK_FLAGS) ./config.status --recheck
# Tell versions [3.59,3.63) of GNU make not to export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT: