xref: /aoo42x/main/solenv/inc/wnt.mk (revision edd74ba5)
17871dc3eSAndrew Rist#**************************************************************
27871dc3eSAndrew Rist#
37871dc3eSAndrew Rist#  Licensed to the Apache Software Foundation (ASF) under one
47871dc3eSAndrew Rist#  or more contributor license agreements.  See the NOTICE file
57871dc3eSAndrew Rist#  distributed with this work for additional information
67871dc3eSAndrew Rist#  regarding copyright ownership.  The ASF licenses this file
77871dc3eSAndrew Rist#  to you under the Apache License, Version 2.0 (the
87871dc3eSAndrew Rist#  "License"); you may not use this file except in compliance
97871dc3eSAndrew Rist#  with the License.  You may obtain a copy of the License at
107871dc3eSAndrew Rist#
117871dc3eSAndrew Rist#    http://www.apache.org/licenses/LICENSE-2.0
127871dc3eSAndrew Rist#
137871dc3eSAndrew Rist#  Unless required by applicable law or agreed to in writing,
147871dc3eSAndrew Rist#  software distributed under the License is distributed on an
157871dc3eSAndrew Rist#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
167871dc3eSAndrew Rist#  KIND, either express or implied.  See the License for the
177871dc3eSAndrew Rist#  specific language governing permissions and limitations
187871dc3eSAndrew Rist#  under the License.
197871dc3eSAndrew Rist#
207871dc3eSAndrew Rist#**************************************************************
217871dc3eSAndrew Rist
227871dc3eSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir# --- Windows-NT-Environment ---------------------------------------
25cdf0e10cSrcweir# Used if "$(GUI)" == "WNT"
26cdf0e10cSrcweir
27cdf0e10cSrcweir# --- Compiler ---
28cdf0e10cSrcweir
29cdf0e10cSrcweir.IF "$(OS)$(COM)$(CPU)" == "WNTMSCI"
30cdf0e10cSrcweir.IF "$(COMEX)" == "10"
31cdf0e10cSrcweir.INCLUDE : wntmsci10.mk
32cdf0e10cSrcweir.ELSE
33cdf0e10cSrcweir# for wntmsci11 (.Net 2005) and wntmsci12 (.Net 2008)
34cdf0e10cSrcweir.INCLUDE : wntmsci11.mk
35cdf0e10cSrcweir.ENDIF # "$(COMEX)" == "10"
36cdf0e10cSrcweir.ENDIF # "$(OS)$(COM)$(CPU)" == "WNTMSCI"
37cdf0e10cSrcweir
38cdf0e10cSrcweir.IF "$(COM)$(OS)$(CPU)" == "GCCWNTI"
39cdf0e10cSrcweir.INCLUDE : wntgcci.mk
40cdf0e10cSrcweir.ENDIF
41cdf0e10cSrcweir
42*edd74ba5SDamjan Jovanovic.IF "$(OS)$(COM)$(CPU)" == "WNTMSCX"
43*edd74ba5SDamjan Jovanovic.INCLUDE : wntmscx.mk
44*edd74ba5SDamjan Jovanovic.ENDIF
45*edd74ba5SDamjan Jovanovic
46cdf0e10cSrcweir# --- changes for W32-tcsh - should move into settings.mk ---
47cdf0e10cSrcweirJAVAC=javac
48cdf0e10cSrcweirJAVA=java
49cdf0e10cSrcweirJAVAI!:=java
50cdf0e10cSrcweirPATH_SEPERATOR*=:
51cdf0e10cSrcweir
52cdf0e10cSrcweir# --- general WNT settings ---
53cdf0e10cSrcweir
54cdf0e10cSrcweirHC=hc
55cdf0e10cSrcweirHCFLAGS=
56cdf0e10cSrcweirDLLPRE=
57cdf0e10cSrcweirDLLPOST=.dll
58cdf0e10cSrcweirEXECPOST=.exe
59cdf0e10cSrcweirSCPPOST=.inf
60cdf0e10cSrcweirDLLDEST=$(BIN)
61cdf0e10cSrcweirSOLARSHAREDBIN=$(SOLARBINDIR)
62cdf0e10cSrcweir
63cdf0e10cSrcweir.IF "$(SOLAR_JAVA)"!=""
64cdf0e10cSrcweirJAVADEF=-DSOLAR_JAVA
65cdf0e10cSrcweir.IF "$(debug)"==""
66cdf0e10cSrcweirJAVA_RUNTIME=javai.lib
67cdf0e10cSrcweir.ELSE
68cdf0e10cSrcweirJAVA_RUNTIME=javai_g.lib
69cdf0e10cSrcweir.ENDIF
70cdf0e10cSrcweir.ENDIF
71cdf0e10cSrcweir
72cdf0e10cSrcweirOOO_LIBRARY_PATH_VAR = PATH
73