settings.mk (7871dc3e) | settings.mk (534c536d) |
---|---|
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 --- 283 unchanged lines hidden (view full) --- 292# =========================================================================== 293# unter NT werden Variablennamen an untergeordnete makefiles UPPERCASE 294# weitergereicht, aber case significant ausgewertet! 295# --------------------------------------------------------------------------- 296 297DMAKE_WORK_DIR*:=$(subst,/,/ $(PWD)) 298.IF "$(GUI)"=="WNT" 299posix_PWD:=/cygdrive/$(PWD:s/://) | 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 --- 283 unchanged lines hidden (view full) --- 292# =========================================================================== 293# unter NT werden Variablennamen an untergeordnete makefiles UPPERCASE 294# weitergereicht, aber case significant ausgewertet! 295# --------------------------------------------------------------------------- 296 297DMAKE_WORK_DIR*:=$(subst,/,/ $(PWD)) 298.IF "$(GUI)"=="WNT" 299posix_PWD:=/cygdrive/$(PWD:s/://) |
300.ELIF "$(GUI)"=="OS2" 301# add /drives/ prefix, requires libc pathrewriter, otherwise breaks dmake % rule 302posix_PWD:=/drives/$(PWD:s/://) |
|
300.ELSE #GUI)"=="WNT" 301posix_PWD:=$(PWD) 302.ENDIF #GUI)"=="WNT" 303 304 305.IF "$(TMP)"!="" 306tmp*=$(TMP) 307.ENDIF --- 893 unchanged lines hidden (view full) --- 1201STDLIB=$(STDLIBCUIMT) 1202STDSHL=$(STDSHLCUIMT) 1203 1204.ENDIF 1205 1206.EXPORT : PICSWITCH 1207 1208.IF "$(USE_SYSTEM_STL)"=="YES" | 303.ELSE #GUI)"=="WNT" 304posix_PWD:=$(PWD) 305.ENDIF #GUI)"=="WNT" 306 307 308.IF "$(TMP)"!="" 309tmp*=$(TMP) 310.ENDIF --- 893 unchanged lines hidden (view full) --- 1204STDLIB=$(STDLIBCUIMT) 1205STDSHL=$(STDSHLCUIMT) 1206 1207.ENDIF 1208 1209.EXPORT : PICSWITCH 1210 1211.IF "$(USE_SYSTEM_STL)"=="YES" |
1212.IF "$(GUI)"=="OS2" 1213LIBSTLPORT= 1214.ELSE |
|
1209LIBSTLPORT="" 1210.ENDIF | 1215LIBSTLPORT="" 1216.ENDIF |
1217.ENDIF |
|
1211 1212.IF "$(NO_DEFAULT_STL)"=="" 1213STDLIB+=$(LIBSTLPORT) 1214STDSHL+=$(LIBSTLPORT) 1215.ENDIF # "$(NO_DEFAULT_STL)"=="" 1216 1217# fill up unresolved symbols not found else where 1218.IF "$(FILLUPARC)"!="" --- 134 unchanged lines hidden (view full) --- 1353XERCES_JAR*=$(SOLARBINDIR)/xercesImpl.jar 1354 1355.IF "$(SYSTEM_CPPUNIT)" != "YES" 1356CPPUNIT_CFLAGS = 1357.END 1358 1359COMPONENTPREFIX_URE_NATIVE = vnd.sun.star.expand:$$URE_INTERNAL_LIB_DIR/ 1360COMPONENTPREFIX_URE_JAVA = vnd.sun.star.expand:$$URE_INTERNAL_JAVA_DIR/ | 1218 1219.IF "$(NO_DEFAULT_STL)"=="" 1220STDLIB+=$(LIBSTLPORT) 1221STDSHL+=$(LIBSTLPORT) 1222.ENDIF # "$(NO_DEFAULT_STL)"=="" 1223 1224# fill up unresolved symbols not found else where 1225.IF "$(FILLUPARC)"!="" --- 134 unchanged lines hidden (view full) --- 1360XERCES_JAR*=$(SOLARBINDIR)/xercesImpl.jar 1361 1362.IF "$(SYSTEM_CPPUNIT)" != "YES" 1363CPPUNIT_CFLAGS = 1364.END 1365 1366COMPONENTPREFIX_URE_NATIVE = vnd.sun.star.expand:$$URE_INTERNAL_LIB_DIR/ 1367COMPONENTPREFIX_URE_JAVA = vnd.sun.star.expand:$$URE_INTERNAL_JAVA_DIR/ |
1361.IF "$(OS)" == "WNT" | 1368.IF "$(OS)" == "WNT" || "$(OS)" == "OS2" |
1362COMPONENTPREFIX_BASIS_NATIVE = vnd.sun.star.expand:$$BRAND_BASE_DIR/program/ 1363.ELSE 1364COMPONENTPREFIX_BASIS_NATIVE = vnd.sun.star.expand:$$OOO_BASE_DIR/program/ 1365.END 1366COMPONENTPREFIX_BASIS_JAVA = vnd.sun.star.expand:$$OOO_BASE_DIR/program/classes/ 1367COMPONENTPREFIX_BASIS_PYTHON = vnd.openoffice.pymodule: 1368COMPONENTPREFIX_INBUILD_NATIVE = \ 1369 vnd.sun.star.expand:$$OOO_INBUILD_SHAREDLIB_DIR/ 1370COMPONENTPREFIX_INBUILD_JAVA = vnd.sun.star.expand:$$OOO_INBUILD_JAR_DIR/ 1371COMPONENTPREFIX_EXTENSION = ./ 1372 1373# workaround for strange dmake bug: 1374# if the previous block was a rule or a target, "\#" isn't recognized 1375# as an escaped "#". if it was an assignment, escaping works... 1376some_unique_variable_name:=1 | 1369COMPONENTPREFIX_BASIS_NATIVE = vnd.sun.star.expand:$$BRAND_BASE_DIR/program/ 1370.ELSE 1371COMPONENTPREFIX_BASIS_NATIVE = vnd.sun.star.expand:$$OOO_BASE_DIR/program/ 1372.END 1373COMPONENTPREFIX_BASIS_JAVA = vnd.sun.star.expand:$$OOO_BASE_DIR/program/classes/ 1374COMPONENTPREFIX_BASIS_PYTHON = vnd.openoffice.pymodule: 1375COMPONENTPREFIX_INBUILD_NATIVE = \ 1376 vnd.sun.star.expand:$$OOO_INBUILD_SHAREDLIB_DIR/ 1377COMPONENTPREFIX_INBUILD_JAVA = vnd.sun.star.expand:$$OOO_INBUILD_JAR_DIR/ 1378COMPONENTPREFIX_EXTENSION = ./ 1379 1380# workaround for strange dmake bug: 1381# if the previous block was a rule or a target, "\#" isn't recognized 1382# as an escaped "#". if it was an assignment, escaping works... 1383some_unique_variable_name:=1 |