xref: /trunk/main/extensions/workben/makefile.mk (revision 7871dc3e)
1*7871dc3eSAndrew Rist#**************************************************************
2*7871dc3eSAndrew Rist#
3*7871dc3eSAndrew Rist#  Licensed to the Apache Software Foundation (ASF) under one
4*7871dc3eSAndrew Rist#  or more contributor license agreements.  See the NOTICE file
5*7871dc3eSAndrew Rist#  distributed with this work for additional information
6*7871dc3eSAndrew Rist#  regarding copyright ownership.  The ASF licenses this file
7*7871dc3eSAndrew Rist#  to you under the Apache License, Version 2.0 (the
8*7871dc3eSAndrew Rist#  "License"); you may not use this file except in compliance
9*7871dc3eSAndrew Rist#  with the License.  You may obtain a copy of the License at
10*7871dc3eSAndrew Rist#
11*7871dc3eSAndrew Rist#    http://www.apache.org/licenses/LICENSE-2.0
12*7871dc3eSAndrew Rist#
13*7871dc3eSAndrew Rist#  Unless required by applicable law or agreed to in writing,
14*7871dc3eSAndrew Rist#  software distributed under the License is distributed on an
15*7871dc3eSAndrew Rist#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*7871dc3eSAndrew Rist#  KIND, either express or implied.  See the License for the
17*7871dc3eSAndrew Rist#  specific language governing permissions and limitations
18*7871dc3eSAndrew Rist#  under the License.
19*7871dc3eSAndrew Rist#
20*7871dc3eSAndrew Rist#**************************************************************
21*7871dc3eSAndrew Rist
22*7871dc3eSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweirPRJ=..
25cdf0e10cSrcweir
26cdf0e10cSrcweirPRJNAME=extensions
27cdf0e10cSrcweirTARGET=workben
28cdf0e10cSrcweirLIBTARGET=NO
29cdf0e10cSrcweir
30cdf0e10cSrcweirTESTAPP=testpgp
31cdf0e10cSrcweir#TESTAPP=testcomponent
32cdf0e10cSrcweir#TESTAPP=pythontest
33cdf0e10cSrcweir#TESTAPP=pythonautotest
34cdf0e10cSrcweir#TESTAPP=testresource
35cdf0e10cSrcweir#TESTAPP=testframecontrol
36cdf0e10cSrcweir
37cdf0e10cSrcweir.IF "$(TESTAPP)" == "testresource" || "$(TESTAPP)" == "testframecontrol"
38cdf0e10cSrcweirTARGETTYPE=GUI
39cdf0e10cSrcweir.ELSE
40cdf0e10cSrcweirTARGETTYPE=CUI
41cdf0e10cSrcweir.ENDIF
42cdf0e10cSrcweir
43cdf0e10cSrcweirJVM_TARGET=jvmtest
44cdf0e10cSrcweir
45cdf0e10cSrcweirENABLE_EXCEPTIONS=TRUE
46cdf0e10cSrcweir
47cdf0e10cSrcweir# --- Settings -----------------------------------------------------
48cdf0e10cSrcweir
49cdf0e10cSrcweir.INCLUDE :  settings.mk
50cdf0e10cSrcweir
51cdf0e10cSrcweirUNOUCROUT=$(OUT)$/inc$/$(PRJNAME)$/$(TARGET)
52cdf0e10cSrcweirINCPRE+=$(UNOUCROUT)
53cdf0e10cSrcweir
54cdf0e10cSrcweir# --- Files --------------------------------------------------------
55cdf0e10cSrcweir
56cdf0e10cSrcweir#
57cdf0e10cSrcweir# testpgp.
58cdf0e10cSrcweir#
59cdf0e10cSrcweir.IF "$(TESTAPP)" == "testpgp"
60cdf0e10cSrcweir
61cdf0e10cSrcweirUNOTYPES= \
62cdf0e10cSrcweir	com.sun.star.lang.XMultiServiceFactory \
63cdf0e10cSrcweir	com.sun.star.io.XInputStream \
64cdf0e10cSrcweir	com.sun.star.io.XOutputStream \
65cdf0e10cSrcweir	com.sun.star.pgp.RecipientsEvent \
66cdf0e10cSrcweir	com.sun.star.pgp.SignatureEvent \
67cdf0e10cSrcweir	com.sun.star.pgp.XPGPDecoder \
68cdf0e10cSrcweir	com.sun.star.pgp.XPGPDecoderListener \
69cdf0e10cSrcweir	com.sun.star.pgp.XPGPEncoder \
70cdf0e10cSrcweir	com.sun.star.pgp.XPGPPreferences \
71cdf0e10cSrcweir	com.sun.star.uno.TypeClass \
72cdf0e10cSrcweir	com.sun.star.uno.XInterface \
73cdf0e10cSrcweir	com.sun.star.uno.XWeak
74cdf0e10cSrcweir
75cdf0e10cSrcweirOBJFILES=	$(OBJ)$/testpgp.obj
76cdf0e10cSrcweir
77cdf0e10cSrcweirAPP1TARGET=	testpgp
78cdf0e10cSrcweirAPP1OBJS=	$(OBJFILES)
79cdf0e10cSrcweirAPP1STDLIBS= \
80cdf0e10cSrcweir			$(CPPUHELPERLIB)\
81cdf0e10cSrcweir			$(CPPULIB)		\
82cdf0e10cSrcweir			$(VOSLIB)		\
83cdf0e10cSrcweir			$(SALLIB)
84cdf0e10cSrcweir
85cdf0e10cSrcweir.ENDIF # testpgp
86cdf0e10cSrcweir
87cdf0e10cSrcweir#
88cdf0e10cSrcweir# std testcomponent
89cdf0e10cSrcweir#
90cdf0e10cSrcweir.IF "$(TESTAPP)" == "testcomponent"
91cdf0e10cSrcweir
92cdf0e10cSrcweirOBJFILES=	$(OBJ)$/testcomponent.obj
93cdf0e10cSrcweir
94cdf0e10cSrcweirAPP2TARGET = testcomponent
95cdf0e10cSrcweirAPP2OBJS   = $(OBJ)$/testcomponent.obj
96cdf0e10cSrcweirAPP2STDLIBS = \
97cdf0e10cSrcweir              $(VOSLIB) \
98cdf0e10cSrcweir              $(TOOLSLIB)	\
99cdf0e10cSrcweir              $(SALLIB)
100cdf0e10cSrcweir
101cdf0e10cSrcweir.ENDIF # testcomponent
102cdf0e10cSrcweir
103cdf0e10cSrcweir#
104cdf0e10cSrcweir# test python.
105cdf0e10cSrcweir#
106cdf0e10cSrcweir.IF "$(TESTAPP)" == "phytontest"
107cdf0e10cSrcweir
108cdf0e10cSrcweirOBJFILES=	$(OBJ)$/pythontest.obj
109cdf0e10cSrcweir
110cdf0e10cSrcweir#APP4TARGET=	pythontest
111cdf0e10cSrcweir#APP4OBJS=	$(OBJ)$/pythontest.obj
112cdf0e10cSrcweir#APP4STDLIBS=$(TOOLSLIB)		\
113cdf0e10cSrcweir#			$(VOSLIB)
114cdf0e10cSrcweir
115cdf0e10cSrcweir.ENDIF # phytontest
116cdf0e10cSrcweir
117cdf0e10cSrcweir#
118cdf0e10cSrcweir# python auto test
119cdf0e10cSrcweir#
120cdf0e10cSrcweir.IF "$(TESTAPP)" == "phytonautotest"
121cdf0e10cSrcweir
122cdf0e10cSrcweirOBJFILES=	$(OBJ)$/pythonautotest.obj
123cdf0e10cSrcweir
124cdf0e10cSrcweir#APP5TARGET= pythonautotest
125cdf0e10cSrcweir#APP5OBJS = $(OBJ)$/pythonautotest.obj
126cdf0e10cSrcweir#APP5STDLIBS=$(TOOLSLIB)		\
127cdf0e10cSrcweir#			$(VOSLIB)
128cdf0e10cSrcweir
129cdf0e10cSrcweir.ENDIF # phytonautotest
130cdf0e10cSrcweir
131cdf0e10cSrcweir#
132cdf0e10cSrcweir# testresource.
133cdf0e10cSrcweir#
134cdf0e10cSrcweir.IF "$(TESTAPP)" == "testresource"
135cdf0e10cSrcweir
136cdf0e10cSrcweirOBJFILES=	$(OBJ)$/testresource.obj
137cdf0e10cSrcweir
138cdf0e10cSrcweirSRS2NAME =		testresource
139cdf0e10cSrcweirSRC2FILES=		testresource.src
140cdf0e10cSrcweirRESLIB2SRSFILES= $(SRS)$/testresource.srs
141cdf0e10cSrcweirRESLIB2NAME=	testresource
142cdf0e10cSrcweir
143cdf0e10cSrcweirAPP2TARGET=	testresource
144cdf0e10cSrcweirAPP2OBJS=	$(OBJ)$/testresource.obj
145cdf0e10cSrcweirAPP2STDLIBS=$(TOOLSLIB)		\
146cdf0e10cSrcweir			$(VCLLIB)		\
147cdf0e10cSrcweir			$(SALLIB)
148cdf0e10cSrcweir
149cdf0e10cSrcweir.ENDIF # testresource
150cdf0e10cSrcweir
151cdf0e10cSrcweir#
152cdf0e10cSrcweir# testframecontrol.
153cdf0e10cSrcweir#
154cdf0e10cSrcweir.IF "$(TESTAPP)" == "testframecontrol"
155cdf0e10cSrcweir
156cdf0e10cSrcweirOBJFILES=	$(OBJ)$/testframecontrol.obj
157cdf0e10cSrcweir
158cdf0e10cSrcweirAPP3TARGET=	testframecontrol
159cdf0e10cSrcweirAPP3OBJS=	$(OBJ)$/testframecontrol.obj
160cdf0e10cSrcweirAPP3STDLIBS=$(TOOLSLIB)		\
161cdf0e10cSrcweir			$(VOSLIB)		\
162cdf0e10cSrcweir			$(SVTOOLLIB)	\
163cdf0e10cSrcweir			$(VCLLIB)
164cdf0e10cSrcweir
165cdf0e10cSrcweir.ENDIF # testframecontrol
166cdf0e10cSrcweir
167cdf0e10cSrcweir# --- Targets ------------------------------------------------------
168cdf0e10cSrcweir
169cdf0e10cSrcweir.INCLUDE :  target.mk
170cdf0e10cSrcweir
171