Print this page
lib: move compat links from targetdirs to proper makefiles
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/lib/Makefile.targ
+++ new/usr/src/lib/Makefile.targ
1 1 #
2 2 # CDDL HEADER START
3 3 #
4 4 # The contents of this file are subject to the terms of the
5 5 # Common Development and Distribution License (the "License").
6 6 # You may not use this file except in compliance with the License.
7 7 #
8 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 # or http://www.opensolaris.org/os/licensing.
10 10 # See the License for the specific language governing permissions
11 11 # and limitations under the License.
12 12 #
13 13 # When distributing Covered Code, include this CDDL HEADER in each
14 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 # If applicable, add the following below this CDDL HEADER, with the
16 16 # fields enclosed by brackets "[]" replaced with your own identifying
17 17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 18 #
19 19 # CDDL HEADER END
20 20 #
21 21 #
22 22 # Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved.
23 23 # Copyright (c) 2019, Joyent, Inc.
24 24 #
25 25
26 26 #
27 27 # included to define local library targets
28 28 #
29 29
30 30 # conditional assignment of default permissions for the installed
31 31 # DYNLIB/DYNLIBCCC. Set here and in Makefile.mach, instead of Makefile.lib,
32 32 # because ROOTLIBDIR may be changed in the including makefile after it has
33 33 # included Makefile.lib.
34 34 #
35 35 $(ROOTLIBDIR)/$(DYNLIB) := FILEMODE= 755
36 36 $(ROOTLIBDIR)/$(DYNLIBCCC) := FILEMODE= 755
37 37
38 38 $(ROOTFS_LIBDIR)/$(DYNLIB) := FILEMODE= 755
39 39 $(ROOTFS_LIBDIR)/$(DYNLIBCCC) := FILEMODE= 755
40 40
41 41 $(ROOTLIBDIR64)/$(DYNLIB) := FILEMODE= 755
42 42 $(ROOTLIBDIR64)/$(DYNLIBCCC) := FILEMODE= 755
43 43
44 44 # install rules
45 45 $(ROOTHDRDIR)/%: $(HDRDIR)/%
46 46 $(INS.file)
47 47
48 48 $(ROOTLIBDIR)/%: %
49 49 $(INS.file)
50 50 $(ROOTLIBDIR64)/%: %
51 51 $(INS.file)
52 52 $(ROOTFS_LIBDIR)/%: %
53 53 $(INS.file)
54 54 $(ROOTFS_LIBDIR64)/%: %
55 55 $(INS.file)
56 56
57 57 $(ROOTLIBDIR)/$(LIBLINKS): $(ROOTLIBDIR)/$(LIBLINKS)$(VERS)
58 58 $(INS.liblink)
59 59 $(ROOTLIBDIR64)/$(LIBLINKS): $(ROOTLIBDIR64)/$(LIBLINKS)$(VERS)
60 60 $(INS.liblink64)
61 61
62 62 $(ROOTLIBDIR)/$(LIBLINKSCCC): $(ROOTLIBDIR)/$(LIBLINKSCCC)$(VERS)
63 63 $(INS.liblinkccc)
64 64 $(ROOTLIBDIR64)/$(LIBLINKSCCC): $(ROOTLIBDIR64)/$(LIBLINKSCCC)$(VERS)
65 65 $(INS.liblinkccc64)
66 66
67 67 $(ROOTLINTDIR)/%: $(SRCDIR)/%
68 68 $(INS.file)
69 69 $(ROOTFS_LINTDIR)/%: $(SRCDIR)/%
70 70 $(INS.file)
71 71
72 72 $(ROOTDEMODIRS):
73 73 $(INS.dir)
74 74 $(ROOTDEMODIRBASE)/%: $(DEMOFILESRCDIR)/%
75 75 $(INS.file)
76 76
77 77 objs/%.o pics/%.o: $(SRCDIR)/%.c
78 78 $(COMPILE.c) -o $@ $<
79 79 $(POST_PROCESS_O)
80 80
81 81 objs/%.o pics/%.o: $(SRCDIR)/%.cc
82 82 $(COMPILE.cc) -o $@ $<
83 83 $(POST_PROCESS_CC_O)
84 84
85 85 objs pics:
86 86 -@mkdir -p $@
87 87
88 88 $(LIBRARY): objs .WAIT $$(OBJS)
89 89 $(BUILD.AR)
90 90 $(POST_PROCESS_A)
91 91
92 92 $(DYNLIB): $$(MAPFILES)
93 93
94 94 $(DYNLIB): pics .WAIT $$(PICS) $$(ALTPICS) $$(EXTPICS)
95 95 $(BUILD.SO)
96 96 $(POST_PROCESS_SO)
97 97
98 98 $(DYNLIBCCC): pics .WAIT $$(PICS) $$(ALTPICS) $$(EXTPICS)
99 99 $(BUILDCCC.SO)
100 100 $(POST_PROCESS_SO)
101 101
102 102 $(LINTLIB): $$(SRCS)
103 103 $(LINT.c) -o $(LIBNAME) $(SRCS) > $(LINTOUT) 2>&1
104 104
105 105 lintcheck: $$(SRCS)
106 106 $(LINT.c) $(LINTCHECKFLAGS) $(SRCS) $(LDLIBS)
↓ open down ↓ |
106 lines elided |
↑ open up ↑ |
107 107
108 108 $(TYPECHECK): $(TYPECHECK_LIB32) $(TYPECHECK_LIB64)
109 109 $(TYPECHECK.lib)
110 110
111 111 clobber: clean
112 112 -$(RM) $(CLOBBERTARGFILES)
113 113
114 114 clean:
115 115 -$(RM) $(OBJS)
116 116 -$(RM) $(PICS) $(DUPLICATE_SRC) $(LINTOUT) $(LINTLIB) $(CLEANFILES)
117 +
118 +$(ROOTCOMPATLINKS):
119 + $(RM) $@; $(SYMLINK) $(COMPATLINKTARGET) $@
120 +
121 +$(ROOTCOMPATLINKS64):
122 + $(RM) $@; $(SYMLINK) $(COMPATLINKTARGET) $@
123 +
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX