Changeset 9127 for trunk/make/setup.mak
- Timestamp:
- Aug 25, 2002, 12:31:24 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/make/setup.mak
r9117 r9127 1 # $Id: setup.mak,v 1.1 2 2002-08-24 04:51:09bird Exp $1 # $Id: setup.mak,v 1.13 2002-08-24 22:31:24 bird Exp $ 2 2 3 3 # … … 121 121 PATH_TOOLS = $(PATH_ROOT)\tools\bin 122 122 # Where platform-specific files are located. (like the .def files) 123 # (default) PATH_DEF = $(SHT_TRGPLTFRM)124 123 PATH_DEF = . 125 124 # Where the include files are located. 126 125 PATH_INCLUDES = $(PATH_ROOT)\include\win;.;$(PATH_ROOT)\include 127 128 126 # Where the temporary files goes. 129 PATH_OBJ = $(PATH_ROOT)\obj\$(SHT_TRGPLTFRM)$(SHT_BLDMD)$(SHT_BLDENV) 130 # Where the executable binaries goes. 131 PATH_BIN = $(PATH_ROOT)\bin\$(BUILD_MODE) 132 # Where the public libraries goes. 133 PATH_LIB = $(PATH_ROOT)\lib\$(BUILD_MODE) 134 # Where the dynamic link libraries goes. 135 PATH_DLL = $(PATH_ROOT)\bin\$(BUILD_MODE) 136 # Where the drivers goes. (common for IFS and SYS.) 137 PATH_SYS = $(PATH_ROOT)\bin\$(BUILD_MODE) 138 # Where the virtual dos drivers goes. 139 PATH_VDD = $(PATH_ROOT)\bin\$(BUILD_MODE) 140 # Where the documentation goes. 141 PATH_DOC = $(PATH_ROOT)\bin\$(BUILD_MODE) 142 # Where the helpfiles goes. 143 PATH_HLP = $(PATH_ROOT)\bin\$(BUILD_MODE) 127 PATH_OBJ = $(PATH_ROOT)\obj\$(SHT_TRGPLTFRM)$(SHT_BLDMD)$(SHT_BLDENV) 128 # Where the libraries goes. 129 PATH_LIB = $(PATH_ROOT)\lib\$(BUILD_MODE) 130 # Base directory of the published files. 131 PATH_PUB = $(PATH_ROOT)\bin\$(BUILD_MODE) 132 # Base directory of the unstripped published files. (release mode only) 133 PATH_PUB_DEB = $(PATH_ROOT)\bin\$(BUILD_MODE).unstripped 134 # Sub dir where the executable binaries goes. 135 PATH_SUB_BIN = . 136 # Sub dir where the dynamic link libraries goes. 137 PATH_SUB_DLL = . 138 # Sub dir where the drivers goes. (common for IFS and SYS.) 139 PATH_SUB_SYS = . 140 # Sub dir where the virtual dos drivers goes. 141 PATH_SUB_VDD = . 142 # Sub dir where the documentation goes. 143 PATH_SUB_DOC = . 144 # Sub dir where the helpfiles goes. 145 PATH_SUB_HLP = . 146 144 147 145 148
Note:
See TracChangeset
for help on using the changeset viewer.