xref: /AOO41X/main/xmlsecurity/source/xmlsec/nss/makefile.mk (revision bd1a492fb221f7df8374ef66fb89a1ec73de4776)
1#**************************************************************
2#
3#  Licensed to the Apache Software Foundation (ASF) under one
4#  or more contributor license agreements.  See the NOTICE file
5#  distributed with this work for additional information
6#  regarding copyright ownership.  The ASF licenses this file
7#  to you under the Apache License, Version 2.0 (the
8#  "License"); you may not use this file except in compliance
9#  with the License.  You may obtain a copy of the License at
10#
11#    http://www.apache.org/licenses/LICENSE-2.0
12#
13#  Unless required by applicable law or agreed to in writing,
14#  software distributed under the License is distributed on an
15#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16#  KIND, either express or implied.  See the License for the
17#  specific language governing permissions and limitations
18#  under the License.
19#
20#**************************************************************
21
22
23
24PRJ=..$/..$/..
25
26PRJNAME = xmlsecurity
27TARGET = xs_nss
28
29ENABLE_EXCEPTIONS = TRUE
30
31# --- Settings -----------------------------------------------------
32
33.INCLUDE :  settings.mk
34.INCLUDE :	$(PRJ)$/util$/target.pmk
35
36.IF "$(SYSTEM_LIBXML)" == "YES"
37INCSYSTEM+=$(LIBXML_CFLAGS)
38CFLAGS+=-DSYSTEM_LIBXML
39.ENDIF
40
41.IF "$(ENABLE_NSS_MODULE)"!="YES"
42@all:
43	@echo "No nss -> no libxmlsec -> no xmlsecurity/nss"
44.ENDIF
45
46.IF "$(SYSTEM_NSS)" != "YES"
47MOZ_INC = $(SOLARVERSION)$/$(INPATH)$/inc$(UPDMINOREXT)$/mozilla
48NSS_CFLAGS = -I$(MOZ_INC)$/nss
49NSPR_CFLAGS = -I$(MOZ_INC)$/nspr
50.ELIF "$(GUI)" == "OS2"
51NSS_CFLAGS = -I/@unixroot/usr/include/nss3
52NSPR_CFLAGS = I/@unixroot/usr/include/nspr4
53.ENDIF
54
55.IF "$(GUI)" == "WNT"
56.IF "$(DBG_LEVEL)" == "0"
57INCPRE += \
58-I$(MOZ_INC)$/profile \
59-I$(MOZ_INC)$/string \
60-I$(MOZ_INC)$/embed_base
61.IF "$(COM)"=="GCC"
62CFLAGS += $(CFLAGSDEBUG)
63.ELSE
64CFLAGS +=   -GR- -W3 -Gy -MD -UDEBUG
65.ENDIF
66.ELSE
67INCPRE += \
68-I$(MOZ_INC)$/profile \
69-I$(MOZ_INC)$/string \
70-I$(MOZ_INC)$/embed_base
71.IF "$(COM)"=="GCC"
72.ELSE
73CFLAGS += -Zi -GR- -W3 -Gy -MDd -UNDEBUG
74.ENDIF
75.ENDIF
76.ENDIF
77.IF "$(GUI)" == "UNX"
78INCPOST += \
79$(MOZ_INC)$/profile \
80-I$(MOZ_INC)$/string \
81-I$(MOZ_INC)$/embed_base
82#.IF "$(OS)" == "LINUX"
83#CFLAGS +=   -fPIC -g
84#CFLAGSCXX += \
85#            -fno-rtti -Wall -Wconversion -Wpointer-arith \
86#            -Wbad-function-cast -Wcast-align -Woverloaded-virtual -Wsynth \
87#            -Wno-long-long -pthread
88#CDEFS     += -DTRACING
89#.ELIF "$(OS)" == "NETBSD"
90#CFLAGS +=   -fPIC
91#CFLAGSCXX += \
92#            -fno-rtti -Wall -Wconversion -Wpointer-arith \
93#            -Wbad-function-cast -Wcast-align -Woverloaded-virtual -Wsynth \
94#            -Wno-long-long
95#CDEFS     += -DTRACING
96#.ENDIF
97.ENDIF
98
99.IF "$(CRYPTO_ENGINE)" == "nss"
100CDEFS += -DXMLSEC_CRYPTO_NSS
101.ENDIF
102
103CDEFS += -DXMLSEC_NO_XSLT
104
105# --- Files --------------------------------------------------------
106
107SOLARINC += \
108 $(NSPR_CFLAGS) \
109 -I$(PRJ)$/source$/xmlsec
110
111SOLARINC += $(NSS_CFLAGS)
112
113SLOFILES = \
114	$(SLO)$/nssinitializer.obj \
115	$(SLO)$/digestcontext.obj \
116	$(SLO)$/ciphercontext.obj \
117	$(SLO)$/xsec_nss.obj
118
119.IF "$(CRYPTO_ENGINE)" == "nss"
120SLOFILES += \
121	$(SLO)$/securityenvironment_nssimpl.obj \
122	$(SLO)$/seinitializer_nssimpl.obj \
123	$(SLO)$/xmlencryption_nssimpl.obj \
124	$(SLO)$/xmlsecuritycontext_nssimpl.obj \
125	$(SLO)$/xmlsignature_nssimpl.obj \
126	$(SLO)$/x509certificate_nssimpl.obj \
127	$(SLO)$/sanextension_nssimpl.obj \
128    $(SLO)$/secerror.obj
129
130.ENDIF
131
132# --- Targets ------------------------------------------------------
133
134.INCLUDE :  target.mk
135