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=shell
27TARGET=testsyssh
28TARGET1=testsmplmail
29TARGET2=testprx
30TARGET4=testfopen
31LIBTARGET=NO
32TARGETTYPE=CUI
33
34# --- Settings -----------------------------------------------------
35
36.INCLUDE :  settings.mk
37
38# --- Files --------------------------------------------------------
39
40CFLAGS+=/GX
41
42OBJFILES1=$(OBJ)$/TestSysShExec.obj
43OBJFILES2=$(OBJ)$/TestSmplMail.obj
44OBJFILES3=$(OBJ)$/TestProxySet.obj
45OBJFILES4=$(OBJ)$/Testfopen.obj
46
47OBJFILES=$(OBJFILES1)\
48		 $(OBJFILES2)
49
50APP1TARGET=$(TARGET)
51APP1OBJS=$(OBJFILES1)
52
53APP1STDLIBS+=	$(CPPULIB)			\
54				$(CPPUHELPERLIB)	\
55				$(SALLIB) 	 		\
56				$(USER32LIB)
57
58APP1DEF=		$(MISC)$/$(APP1TARGET).def
59
60
61# --- TestSmplMail ---
62
63APP2TARGET=$(TARGET1)
64APP2OBJS=$(OBJFILES2)
65
66APP2STDLIBS+=	$(CPPULIB)			\
67				$(CPPUHELPERLIB)	\
68				$(SALLIB) 	 		\
69				$(USER32LIB)
70
71APP2DEF=		$(MISC)$/$(APP2TARGET).def
72
73# --- TestProxy ---
74
75APP3TARGET=$(TARGET2)
76APP3OBJS=$(OBJFILES3)
77
78APP3STDLIBS+=	$(CPPULIB)			\
79				$(CPPUHELPERLIB)	\
80				$(SALLIB)
81
82APP3DEF=		$(MISC)$/$(APP3TARGET).def
83
84# --- Testfopen ---
85
86APP4TARGET=$(TARGET4)
87APP4OBJS=$(OBJFILES4)
88
89APP4STDLIBS+=	$(SALLIB)
90
91APP4DEF=		$(MISC)$/$(APP4TARGET).def
92
93# --- Targets ------------------------------------------------------
94
95.INCLUDE :		target.mk
96
97
98