2 # ***** BEGIN LICENSE BLOCK *****
3 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 # The contents of this file are subject to the Mozilla Public License Version
6 # 1.1 (the "License"); you may not use this file except in compliance with
7 # the License. You may obtain a copy of the License at
8 # http://www.mozilla.org/MPL/
10 # Software distributed under the License is distributed on an "AS IS" basis,
11 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 # for the specific language governing rights and limitations under the
15 # The Original Code is the Netscape Portable Runtime (NSPR).
17 # The Initial Developer of the Original Code is
18 # Netscape Communications Corporation.
19 # Portions created by the Initial Developer are Copyright (C) 1998-2000
20 # the Initial Developer. All Rights Reserved.
24 # Alternatively, the contents of this file may be used under the terms of
25 # either the GNU General Public License Version 2 or later (the "GPL"), or
26 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 # in which case the provisions of the GPL or the LGPL are applicable instead
28 # of those above. If you wish to allow use of your version of this file only
29 # under the terms of either the GPL or the LGPL, and not to allow others to
30 # use your version of this file under the terms of the MPL, indicate your
31 # decision by deleting the provisions above and replace them with the notice
32 # and other provisions required by the GPL or the LGPL. If you do not delete
33 # the provisions above, a recipient may use your version of this file under
34 # the terms of any one of the MPL, the GPL or the LGPL.
36 # ***** END LICENSE BLOCK *****
42 topsrcdir
= @top_srcdir@
46 include $(MOD_DEPTH
)/config
/autoconf.mk
48 include $(topsrcdir
)/config
/config.mk
50 INCLUDES
= -I
$(dist_includedir
)
70 LIBRARY_VERSION
= $(MOD_MAJOR_VERSION
)
72 RELEASE_LIBS
= $(TARGETS
)
74 ifeq ($(OS_ARCH
),WINNT
)
79 ifeq ($(OS_ARCH
), AIX
)
80 ifeq ($(CLASSIC_NSPR
),1)
87 ifeq ($(OS_ARCH
),IRIX
)
91 ifeq ($(OS_ARCH
),SunOS
)
93 MAPFILE
= $(OBJDIR
)/plcmap.sun
97 MKSHLIB
+= -Wl
,--version-script
,$(MAPFILE
)
99 MKSHLIB
+= -Wl
,-M
,$(MAPFILE
)
102 MKSHLIB
+= -M
$(MAPFILE
)
104 # The -R '$ORIGIN' linker option instructs this library to search for its
105 # dependencies in the same directory where it resides.
106 MKSHLIB
+= -R
'$$ORIGIN'
109 ifeq ($(OS_ARCH
),OS2
)
110 MAPFILE
= $(OBJDIR
)/$(LIBRARY_NAME
)$(LIBRARY_VERSION
).def
111 GARBAGE
+= $(MAPFILE
)
112 MKSHLIB
+= $(MAPFILE
)
115 EXTRA_LIBS
= $(LIBNSPR
)
117 # On NCR and SCOOS, we can't link with extra libraries when
118 # we build a shared library. If we do so, the linker doesn't
119 # complain, but we would run into weird problems at run-time.
120 # Therefore on these platforms, we link just the .o files.
121 ifeq ($(OS_ARCH
),NCR
)
124 ifeq ($(OS_ARCH
),SCOOS
)
128 ifdef RESOLVE_LINK_SYMBOLS
129 EXTRA_LIBS
+= $(OS_LIBS
)
132 include $(topsrcdir
)/config
/rules.mk
135 # Version information generation (begin)
138 TINC
= $(OBJDIR
)/_pl_bld.h
139 PROD
= $(notdir $(SHARED_LIBRARY
))
140 NOW
= $(MOD_DEPTH
)/config
/$(OBJDIR
)/now
141 SH_DATE
= $(shell date
"+%Y-%m-%d %T")
142 SH_NOW
= $(shell $(NOW
))
144 ifeq ($(NS_USE_GCC
)_
$(OS_ARCH
),_WINNT
)
154 @
$(ECHO
) '#define _BUILD_STRING "$(SH_DATE)"' > $(TINC
)
155 @if
test ! -z
"$(SH_NOW)"; then \
156 $(ECHO
) '#define _BUILD_TIME $(SH_NOW)$(SUF)' >> $(TINC
); \
160 @
$(ECHO
) '#define _PRODUCTION "$(PROD)"' >> $(TINC
)
163 $(OBJDIR
)/plvrsion.
$(OBJ_SUFFIX
): plvrsion.c
$(TINC
)
164 ifeq ($(NS_USE_GCC
)_
$(OS_ARCH
),_WINNT
)
165 $(CC
) -Fo
$@
-c
$(CFLAGS
) -I
$(OBJDIR
) $<
167 $(CC
) -o
$@
-c
$(CFLAGS
) -I
$(OBJDIR
) $<
170 # Version information generation (end)
174 # The Client build wants the shared libraries in $(dist_bindir),
175 # so we also install them there.
179 $(INSTALL
) -m
444 $(TARGETS
) $(dist_libdir
)
181 ifeq ($(OS_ARCH
),HP-UX
)
182 $(INSTALL
) -m
755 $(SHARED_LIBRARY
) $(dist_libdir
)
183 $(INSTALL
) -m
755 $(SHARED_LIBRARY
) $(dist_bindir
)
185 $(INSTALL
) -m
444 $(SHARED_LIBRARY
) $(dist_bindir
)
188 ifeq ($(MOZ_BITS
),16)
189 $(INSTALL
) -m
444 $(TARGETS
) $(MOZ_DIST
)/lib
190 $(INSTALL
) -m
444 $(TARGETS
) $(MOZ_DIST
)/bin