Upload Tizen:Base source
[toolchains/nspr.git] / mozilla / nsprpub / pr / src / misc / Makefile.in
1
2 # ***** BEGIN LICENSE BLOCK *****
3 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 #
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/
9 #
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
13 # License.
14 #
15 # The Original Code is the Netscape Portable Runtime (NSPR).
16 #
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.
21 #
22 # Contributor(s):
23 #
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.
35 #
36 # ***** END LICENSE BLOCK *****
37
38 #! gmake
39
40 MOD_DEPTH       = ../../..
41 topsrcdir       = @top_srcdir@
42 srcdir          = @srcdir@
43 VPATH           = @srcdir@
44
45 include $(MOD_DEPTH)/config/autoconf.mk
46
47 include $(topsrcdir)/config/config.mk
48
49 CSRCS = \
50         pralarm.c  \
51         pratom.c   \
52         prcountr.c \
53         prdtoa.c   \
54         prenv.c    \
55         prerr.c  \
56         prerror.c  \
57         prerrortable.c  \
58         prinit.c   \
59         prinrval.c \
60         pripc.c \
61         prlog2.c   \
62         prlong.c   \
63         prnetdb.c  \
64         praton.c  \
65         prolock.c  \
66         prrng.c    \
67         prsystem.c \
68         prtime.c   \
69         prthinfo.c \
70         prtpool.c \
71         prtrace.c  \
72         $(NULL)
73
74 ifndef USE_PTHREADS
75 CSRCS += \
76         pripcsem.c \
77         $(NULL)
78 endif
79
80 TARGETS = $(OBJS)
81
82 INCLUDES = -I$(dist_includedir) -I$(topsrcdir)/pr/include -I$(topsrcdir)/pr/include/private
83
84 DEFINES += -D_NSPR_BUILD_
85
86 RELEASE_BINS = $(srcdir)/compile-et.pl $(srcdir)/prerr.properties
87
88 include $(topsrcdir)/config/rules.mk
89
90 # Prevent floating point errors caused by MSVC 6.0 Processor Pack
91 # optimizations (bug 207421).  This disables optimizations that
92 # could change the precision of floating-point calculations for
93 # this single compilation unit.
94 ifeq ($(NS_USE_GCC)_$(OS_ARCH),_WINNT)
95 $(OBJDIR)/prdtoa.$(OBJ_SUFFIX): prdtoa.c
96         @$(MAKE_OBJDIR)
97 ifeq (,$(filter-out 1100 1200 1300 1310,$(MSC_VER)))
98         $(CC) -Fo$@ -c $(CFLAGS) -Op $(call pr_abspath,$<)
99 else
100         $(CC) -Fo$@ -c $(CFLAGS) -fp:precise $(call pr_abspath,$<)
101 endif
102 endif
103
104 #
105 # Generate prerr.h, prerr.c, and prerr.properties from prerr.et.
106 #
107 build_prerr:
108         cd $(srcdir); $(PERL) compile-et.pl prerr.et
109
110 export:: $(TARGETS)
111
112