xref: /aoo41x/main/automation/util/makefile.mk (revision cd9ed9f2)
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=automation
27cdf0e10cSrcweirTARGET=automation
28cdf0e10cSrcweirTARGETTYPE=GUI
29cdf0e10cSrcweir
30cdf0e10cSrcweir# --- Settings ---------------------------------------------------
31cdf0e10cSrcweir
32cdf0e10cSrcweir.INCLUDE :  settings.mk
33cdf0e10cSrcweir
34cdf0e10cSrcweir# --- Allgemein ---------------------------------------------------
35cdf0e10cSrcweir
36cdf0e10cSrcweirLIB1TARGET=$(SLB)$/$(TARGET).lib
37cdf0e10cSrcweirLIB1FILES=                 \
38cdf0e10cSrcweir	$(SLB)$/server.lib     \
39cdf0e10cSrcweir	$(SLB)$/simplecm.lib   \
40cdf0e10cSrcweir	$(SLB)$/communi.lib
41cdf0e10cSrcweir
42cdf0e10cSrcweir# --- sts library ---------------------------------------------------
43cdf0e10cSrcweir
44cdf0e10cSrcweirSHL1TARGET= sts$(DLLPOSTFIX)
45cdf0e10cSrcweirSHL1IMPLIB= ists
46cdf0e10cSrcweir
47cdf0e10cSrcweirSHL1STDLIBS= \
48cdf0e10cSrcweir			$(TOOLSLIB) \
49cdf0e10cSrcweir			$(UNOTOOLSLIB) \
50cdf0e10cSrcweir			$(SVTOOLLIB) \
51cdf0e10cSrcweir			$(SVLLIB)       \
52cdf0e10cSrcweir			$(VCLLIB) \
53cdf0e10cSrcweir			$(BASICLIB) \
54cdf0e10cSrcweir			$(VOSLIB) \
55cdf0e10cSrcweir			$(SALLIB) \
56cdf0e10cSrcweir			$(CPPUHELPERLIB) \
57cdf0e10cSrcweir			$(CPPULIB) \
58cdf0e10cSrcweir			$(COMPHELPERLIB) \
59cdf0e10cSrcweir			$(SOTLIB)
60cdf0e10cSrcweir
61cdf0e10cSrcweir
62cdf0e10cSrcweir.IF "$(GUI)"=="WNT"
63cdf0e10cSrcweirSHL1STDLIBS+= \
64cdf0e10cSrcweir		$(ADVAPI32LIB)	\
65cdf0e10cSrcweir		$(GDI32LIB)
66cdf0e10cSrcweir.ENDIF
67cdf0e10cSrcweir
68cdf0e10cSrcweirSHL1DEF=        $(MISC)$/$(SHL1TARGET).def
69cdf0e10cSrcweirSHL1LIBS=       $(SLB)$/$(TARGET).lib
70cdf0e10cSrcweir
71cdf0e10cSrcweirDEF1NAME        =$(SHL1TARGET)
72cdf0e10cSrcweirDEF1DEPN        =       \
73cdf0e10cSrcweir	$(MISC)$/$(SHL1TARGET).flt
74cdf0e10cSrcweir
75cdf0e10cSrcweirDEFLIB1NAME     =$(TARGET)
76cdf0e10cSrcweirDEF1DES         =TestToolServer
77cdf0e10cSrcweir
78cdf0e10cSrcweir# --- simple communication library (no vcl) ---------------------------------------------------
79cdf0e10cSrcweir
80cdf0e10cSrcweirSHL2TARGET= simplecm$(DLLPOSTFIX)
81cdf0e10cSrcweirSHL2IMPLIB= isimplecm
82cdf0e10cSrcweir
83cdf0e10cSrcweirSHL2STDLIBS= \
84cdf0e10cSrcweir			$(TOOLSLIB) \
85cdf0e10cSrcweir			$(VOSLIB) \
86cdf0e10cSrcweir			$(SALLIB)
87cdf0e10cSrcweir
88cdf0e10cSrcweir
89cdf0e10cSrcweirSHL2DEF=        $(MISC)$/$(SHL2TARGET).def
90cdf0e10cSrcweirSHL2LIBS=       $(SLB)$/simplecm.lib
91cdf0e10cSrcweir
92cdf0e10cSrcweirDEF2NAME        =$(SHL2TARGET)
93cdf0e10cSrcweirDEF2DEPN        =       \
94cdf0e10cSrcweir	$(MISC)$/$(SHL2TARGET).flt
95cdf0e10cSrcweir
96cdf0e10cSrcweirDEFLIB2NAME     =simplecm
97cdf0e10cSrcweirDEF2DES         =SimpleCommunication
98cdf0e10cSrcweir
99cdf0e10cSrcweir# --- communication library ---------------------------------------------------
100cdf0e10cSrcweir
101cdf0e10cSrcweirSHL3TARGET= communi$(DLLPOSTFIX)
102cdf0e10cSrcweirSHL3IMPLIB= icommuni
103cdf0e10cSrcweir
104cdf0e10cSrcweirSHL3STDLIBS= \
105cdf0e10cSrcweir			$(TOOLSLIB) \
106cdf0e10cSrcweir			$(SVLLIB)       \
107cdf0e10cSrcweir			$(VCLLIB) \
108cdf0e10cSrcweir			$(VOSLIB) \
109cdf0e10cSrcweir			$(SALLIB) \
110cdf0e10cSrcweir            $(VOSLIB) \
111cdf0e10cSrcweir            $(SIMPLECMLIB)
112cdf0e10cSrcweir
113cdf0e10cSrcweir
114cdf0e10cSrcweir.IF "$(GUI)"=="WNT"
115cdf0e10cSrcweirSHL3STDLIBS+= \
116cdf0e10cSrcweir		$(ADVAPI32LIB)	\
117cdf0e10cSrcweir		$(GDI32LIB)
118cdf0e10cSrcweir.ENDIF
119cdf0e10cSrcweir
120cdf0e10cSrcweirSHL3DEF=        $(MISC)$/$(SHL3TARGET).def
121cdf0e10cSrcweirSHL3LIBS=       $(SLB)$/communi.lib
122cdf0e10cSrcweirSHL3DEPN=$(SHL2TARGETN)
123cdf0e10cSrcweir
124cdf0e10cSrcweirDEF3NAME        =$(SHL3TARGET)
125cdf0e10cSrcweirDEF3DEPN        =       \
126cdf0e10cSrcweir	$(MISC)$/$(SHL3TARGET).flt
127cdf0e10cSrcweir
128cdf0e10cSrcweirDEFLIB3NAME     =communi
129cdf0e10cSrcweirDEF3DES         =Communication
130cdf0e10cSrcweir
131cdf0e10cSrcweir
132cdf0e10cSrcweir# --- Targets -----------------------------------------------------------
133cdf0e10cSrcweir
134cdf0e10cSrcweir.INCLUDE :  target.mk
135cdf0e10cSrcweir
136cdf0e10cSrcweir# --- Basic-Filter-Datei ---
137cdf0e10cSrcweir
138cdf0e10cSrcweir$(MISC)$/$(SHL1TARGET).flt: makefile.mk
139cdf0e10cSrcweir	@echo ------------------------------
140cdf0e10cSrcweir	@echo Making: $@
141cdf0e10cSrcweir	@echo WEP > $@
142cdf0e10cSrcweir	@echo LIBMAIN >> $@
143cdf0e10cSrcweir	@echo LibMain >> $@
144cdf0e10cSrcweir	@echo Sbi >> $@
145cdf0e10cSrcweir	@echo exception >> $@
146cdf0e10cSrcweir	@echo bad_alloc >> $@
147cdf0e10cSrcweir	@echo __CT >> $@
148cdf0e10cSrcweir
149cdf0e10cSrcweir$(MISC)$/$(SHL2TARGET).flt: makefile.mk
150cdf0e10cSrcweir	@echo ------------------------------
151cdf0e10cSrcweir	@echo Making: $@
152cdf0e10cSrcweir	@echo WEP > $@
153cdf0e10cSrcweir	@echo LIBMAIN >> $@
154cdf0e10cSrcweir	@echo LibMain >> $@
155cdf0e10cSrcweir	@echo Sbi >> $@
156cdf0e10cSrcweir	@echo exception >> $@
157cdf0e10cSrcweir	@echo bad_alloc >> $@
158cdf0e10cSrcweir	@echo __CT >> $@
159cdf0e10cSrcweir
160cdf0e10cSrcweir$(MISC)$/$(SHL3TARGET).flt: makefile.mk
161cdf0e10cSrcweir	@echo ------------------------------
162cdf0e10cSrcweir	@echo Making: $@
163cdf0e10cSrcweir	@echo WEP > $@
164cdf0e10cSrcweir	@echo LIBMAIN >> $@
165cdf0e10cSrcweir	@echo LibMain >> $@
166cdf0e10cSrcweir	@echo Sbi >> $@
167cdf0e10cSrcweir	@echo exception >> $@
168cdf0e10cSrcweir	@echo bad_alloc >> $@
169cdf0e10cSrcweir	@echo __CT >> $@
170cdf0e10cSrcweir
171cdf0e10cSrcweir
172cdf0e10cSrcweir# ------------------------------------------------------------------------
173cdf0e10cSrcweir
174