xref: /AOO41X/main/shell/source/win32/workbench/makefile.mk (revision 47148b3bc50811ceb41802e4cc50a5db21535900)
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
44OBJFILES4=$(OBJ)$/Testfopen.obj
45
46OBJFILES=$(OBJFILES1)\
47         $(OBJFILES2)
48
49APP1TARGET=$(TARGET)
50APP1OBJS=$(OBJFILES1)
51
52APP1STDLIBS+=   $(CPPULIB)          \
53                $(CPPUHELPERLIB)    \
54                $(SALLIB)           \
55                $(USER32LIB)
56
57APP1DEF=        $(MISC)$/$(APP1TARGET).def
58
59
60# --- TestSmplMail ---
61
62APP2TARGET=$(TARGET1)
63APP2OBJS=$(OBJFILES2)
64
65APP2STDLIBS+=   $(CPPULIB)          \
66                $(CPPUHELPERLIB)    \
67                $(SALLIB)           \
68                $(USER32LIB)
69
70APP2DEF=        $(MISC)$/$(APP2TARGET).def
71
72# --- Testfopen ---
73
74APP4TARGET=$(TARGET4)
75APP4OBJS=$(OBJFILES4)
76
77APP4STDLIBS+=   $(SALLIB)
78
79APP4DEF=        $(MISC)$/$(APP4TARGET).def
80
81# --- Targets ------------------------------------------------------
82
83.INCLUDE :      target.mk
84
85
86