1#*************************************************************************
2#
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# Copyright 2000, 2010 Oracle and/or its affiliates.
6#
7# OpenOffice.org - a multi-platform office productivity suite
8#
9# This file is part of OpenOffice.org.
10#
11# OpenOffice.org is free software: you can redistribute it and/or modify
12# it under the terms of the GNU Lesser General Public License version 3
13# only, as published by the Free Software Foundation.
14#
15# OpenOffice.org is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18# GNU Lesser General Public License version 3 for more details
19# (a copy is included in the LICENSE file that accompanied this code).
20#
21# You should have received a copy of the GNU Lesser General Public License
22# version 3 along with OpenOffice.org.  If not, see
23# <http://www.openoffice.org/license.html>
24# for a copy of the LGPLv3 License.
25#
26#*************************************************************************
27
28PRJ=..$/..$/..
29
30PRJNAME=shell
31TARGET=testsyssh
32TARGET1=testsmplmail
33TARGET2=testprx
34TARGET4=testfopen
35LIBTARGET=NO
36TARGETTYPE=CUI
37
38# --- Settings -----------------------------------------------------
39
40.INCLUDE :  settings.mk
41
42# --- Files --------------------------------------------------------
43
44CFLAGS+=/GX
45
46OBJFILES1=$(OBJ)$/TestSysShExec.obj
47OBJFILES2=$(OBJ)$/TestSmplMail.obj
48OBJFILES3=$(OBJ)$/TestProxySet.obj
49OBJFILES4=$(OBJ)$/Testfopen.obj
50
51OBJFILES=$(OBJFILES1)\
52		 $(OBJFILES2)
53
54APP1TARGET=$(TARGET)
55APP1OBJS=$(OBJFILES1)
56
57APP1STDLIBS+=	$(CPPULIB)			\
58				$(CPPUHELPERLIB)	\
59				$(SALLIB) 	 		\
60				$(USER32LIB)
61
62APP1DEF=		$(MISC)$/$(APP1TARGET).def
63
64
65# --- TestSmplMail ---
66
67APP2TARGET=$(TARGET1)
68APP2OBJS=$(OBJFILES2)
69
70APP2STDLIBS+=	$(CPPULIB)			\
71				$(CPPUHELPERLIB)	\
72				$(SALLIB) 	 		\
73				$(USER32LIB)
74
75APP2DEF=		$(MISC)$/$(APP2TARGET).def
76
77# --- TestProxy ---
78
79APP3TARGET=$(TARGET2)
80APP3OBJS=$(OBJFILES3)
81
82APP3STDLIBS+=	$(CPPULIB)			\
83				$(CPPUHELPERLIB)	\
84				$(SALLIB)
85
86APP3DEF=		$(MISC)$/$(APP3TARGET).def
87
88# --- Testfopen ---
89
90APP4TARGET=$(TARGET4)
91APP4OBJS=$(OBJFILES4)
92
93APP4STDLIBS+=	$(SALLIB)
94
95APP4DEF=		$(MISC)$/$(APP4TARGET).def
96
97# --- Targets ------------------------------------------------------
98
99.INCLUDE :		target.mk
100
101
102