blob: 3142eab4217b19eeb7df87662733c7d95a5c9a71 (
plain)
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
|
### config/libnover.in
# *** keep this in sync with lib.in
#
# Makefile fragment that creates shared libraries sans version
# info (plugin modules).
#
# The following variables must be set in the Makefile.in:
#
# LIBBASE library name without "lib" or extension
# STOBJLISTS list of files, each of which is an OBJS.ST created by
# libobj.in; *DO NOT* use ./OBJS.ST for the current
# directory as that will cause some makes to lose.
# SHLIB_EXPDEPS list of libraries that this one has explicit
# dependencies on, pref. in the form libfoo$(SHLIBEXT)
# SHLIB_EXPLIBS list of libraries that this one has explicit
# dependencies on, in "-lfoo" form.
# SHLIB_DIRS list of directories where $(SHLIB_EXPLIBS) can be
# found, in the form -Ldir1 -Ldir2 ...
# since there are very few systems where -L is the
# wrong thing (notable exception of SunOS but we
# deal with it...)
# SHLIB_RDIRS rpath directories to search; given in the
# form dir1:dir2 ...
# RELDIR path to this directory relative to $(TOPLIBD)
# STOBJLISTS=dir1/OBJS.ST dir2/OBJS.ST etc...
SHOBJLISTS=$(STOBJLISTS:.ST=.SH)
dummy-target-1 $(SUBDIROBJLISTS) $(SUBDIROBJLISTS:.ST=.SH) $(SUBDIROBJLISTS:.ST=.PF): all-recurse
# Gets invoked as $(PARSE_OBJLISTS) list-of-OBJS.*-files
PARSE_OBJLISTS= set -x && $(PERL) -p -e '$$e=$$ARGV; $$e =~ s/OBJS\...$$//; s/^/ /; s/ $$//; s/ / $$e/g;'
SHLIBVEXT=SHLIBEXT
lib$(LIBBASE)$(SHLIBVEXT): $(SHOBJLISTS) $(SHLIB_EXPDEPS) $(SHLIB_EXPORT_FILE_DEP)
$(RM) $@
@echo "building shared $(LIBBASE) library"
set -x; objlist=`$(PARSE_OBJLISTS) $(SHOBJLISTS)` && $(MAKE_SHLIB_COMMAND)
binutils.versions: $(SHLIB_EXPORT_FILE) Makefile
echo > binutils.versions "HIDDEN { local: __*; _rest*; _save*; *; };"
echo >> binutils.versions "$(LIBBASE)_$(LIBMAJOR)_MIT {"
sed >> binutils.versions < $(SHLIB_EXPORT_FILE) "s/$$/;/"
echo >> binutils.versions "};"
osf1.exports: $(SHLIB_EXPORT_FILE) Makefile
$(RM) osf1.tmp osf1.exports
sed "s/^/-exported_symbol /" < $(SHLIB_EXPORT_FILE) > osf1.tmp
for f in . $(LIBINITFUNC); do \
if test "$$f" != "." ; then \
echo " -init $$f"__auxinit >> osf1.tmp; \
else :; fi; \
done
a=""; \
for f in . $(LIBFINIFUNC); do \
if test "$$f" != "." ; then \
a="-fini $$f $$a"; \
else :; fi; \
done; echo " $$a" >> osf1.tmp; \
mv -f osf1.tmp osf1.exports
hpux10.exports: $(SHLIB_EXPORT_FILE) Makefile
$(RM) hpux10.tmp hpux10.exports
sed "s/^/+e /" < $(SHLIB_EXPORT_FILE) > hpux10.tmp
a=""; \
for f in . $(LIBFINIFUNC); do \
if test "$$f" != .; then \
a="+I $${f}__auxfini $$a"; \
else :; fi; \
done; echo "$$a" >> hpux10.tmp
echo "+e errno" >> hpux10.tmp
mv -f hpux10.tmp hpux10.exports
$(TOPLIBD)/lib$(LIBBASE)$(SHLIBEXT): lib$(LIBBASE)$(SHLIBEXT)
$(RM) $@
(cd $(TOPLIBD) && $(LN_S) $(RELDIR)/lib$(LIBBASE)$(SHLIBEXT) .)
all-libs: $(LIBLIST)
all-liblinks: $(LIBLINKS)
clean-libs:
$(RM) lib$(LIBBASE)$(SHLIBEXT)
$(RM) binutils.versions osf1.exports
clean-liblinks:
$(RM) $(TOPLIBD)/lib$(LIBBASE)$(SHLIBEXT)
install-libs: $(LIBINSTLIST)
install-shared:
$(RM) $(DESTDIR)$(KRB5_LIBDIR)/lib$(LIBBASE)$(SHLIBEXT)
$(INSTALL_SHLIB) lib$(LIBBASE)$(SHLIBEXT) $(DESTDIR)$(KRB5_LIBDIR)
Makefile: $(SRCTOP)/config/lib.in
$(thisconfigdir)/config.status: $(SRCTOP)/config/shlib.conf
# Use the following if links need to be made to $(TOPLIBD):
# all-unix:: all-liblinks
# install-unix:: install-libs
# clean-unix:: clean-liblinks clean-libs
# Use the following if links need not be made:
# all-unix:: all-libs
# install-unix:: install-libs
# clean-unix:: clean-libs
###
### end config/libnovers.in
|