xref: /trunk/main/xmlsecurity/qa/certext/makefile.mk (revision e3c01311)
1*e3c01311SAndrew Rist#**************************************************************
2*e3c01311SAndrew Rist#
3*e3c01311SAndrew Rist#  Licensed to the Apache Software Foundation (ASF) under one
4*e3c01311SAndrew Rist#  or more contributor license agreements.  See the NOTICE file
5*e3c01311SAndrew Rist#  distributed with this work for additional information
6*e3c01311SAndrew Rist#  regarding copyright ownership.  The ASF licenses this file
7*e3c01311SAndrew Rist#  to you under the Apache License, Version 2.0 (the
8*e3c01311SAndrew Rist#  "License"); you may not use this file except in compliance
9*e3c01311SAndrew Rist#  with the License.  You may obtain a copy of the License at
10*e3c01311SAndrew Rist#
11*e3c01311SAndrew Rist#    http://www.apache.org/licenses/LICENSE-2.0
12*e3c01311SAndrew Rist#
13*e3c01311SAndrew Rist#  Unless required by applicable law or agreed to in writing,
14*e3c01311SAndrew Rist#  software distributed under the License is distributed on an
15*e3c01311SAndrew Rist#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*e3c01311SAndrew Rist#  KIND, either express or implied.  See the License for the
17*e3c01311SAndrew Rist#  specific language governing permissions and limitations
18*e3c01311SAndrew Rist#  under the License.
19*e3c01311SAndrew Rist#
20*e3c01311SAndrew Rist#**************************************************************
21*e3c01311SAndrew Rist
22*e3c01311SAndrew Rist
23970ef17cSMichael Stahl.IF "$(ENABLE_NSS_MODULE)" == "NO"
24970ef17cSMichael Stahlnothing .PHONY:
25970ef17cSMichael Stahl.ELSE
26cdf0e10cSrcweir.IF "$(OOO_SUBSEQUENT_TESTS)" == ""
27cdf0e10cSrcweirnothing .PHONY:
28cdf0e10cSrcweir.ELSE
29cdf0e10cSrcweir
30cdf0e10cSrcweirPRJ = ../..
31cdf0e10cSrcweirPRJNAME = xmlsecurity
32cdf0e10cSrcweirTARGET = qa_certext
33cdf0e10cSrcweir
34cdf0e10cSrcweirENABLE_EXCEPTIONS = TRUE
35cdf0e10cSrcweir
36cdf0e10cSrcweir.INCLUDE: settings.mk
37cdf0e10cSrcweir.INCLUDE :	$(PRJ)$/util$/target.pmk
38cdf0e10cSrcweir
39cdf0e10cSrcweirCFLAGSCXX += $(CPPUNIT_CFLAGS)
40cdf0e10cSrcweir
41cdf0e10cSrcweirSHL1IMPLIB = i$(SHL1TARGET)
42cdf0e10cSrcweirSHL1OBJS = $(SLOFILES)
43cdf0e10cSrcweirSHL1RPATH = NONE
44cdf0e10cSrcweirSHL1STDLIBS = $(CPPUNITLIB)     \
45cdf0e10cSrcweir              $(SALLIB)         \
46cdf0e10cSrcweir              $(NEON3RDLIB)     \
47cdf0e10cSrcweir              $(CPPULIB)        \
48cdf0e10cSrcweir              $(XMLOFFLIB)      \
49cdf0e10cSrcweir	          $(CPPUHELPERLIB)	\
50cdf0e10cSrcweir	          $(SVLLIB)			\
51cdf0e10cSrcweir	          $(TOOLSLIB)	    \
52cdf0e10cSrcweir	          $(COMPHELPERLIB) \
53cdf0e10cSrcweir	          $(TESTLIB)
54cdf0e10cSrcweir
55cdf0e10cSrcweirSHL1TARGET = qa_CertExt
56cdf0e10cSrcweirSHL1VERSIONMAP = $(PRJ)/qa/certext/export.map
57cdf0e10cSrcweirDEF1NAME = $(SHL1TARGET)
58cdf0e10cSrcweir
59cdf0e10cSrcweirSLOFILES = $(SLO)/SanCertExt.obj
60cdf0e10cSrcweir
61cdf0e10cSrcweir.INCLUDE: target.mk
62cdf0e10cSrcweir.INCLUDE: installationtest.mk
63cdf0e10cSrcweir
64cdf0e10cSrcweirALLTAR : cpptest
65cdf0e10cSrcweir
66cdf0e10cSrcweircpptest : $(SHL1TARGETN)
67cdf0e10cSrcweir
68cdf0e10cSrcweirCPPTEST_LIBRARY = $(SHL1TARGETN)
69cdf0e10cSrcweir
70970ef17cSMichael Stahl.END
71970ef17cSMichael Stahl.END
72