| OLD | NEW |
| 1 # The following variables will likely need to be modified, depending on where | 1 # The following variables will likely need to be modified, depending on where |
| 2 # and how you built LLVM & Clang. They can be overridden in a command-line | 2 # and how you built LLVM & Clang. They can be overridden in a command-line |
| 3 # invocation of make, like: | 3 # invocation of make, like: |
| 4 # | 4 # |
| 5 # make LLVM_SRC_PATH=<path> LIBCXX_INSTALL_PATH=<path> CLANG_PATH=<path> \ | 5 # make LLVM_SRC_PATH=<path> LIBCXX_INSTALL_PATH=<path> CLANG_PATH=<path> \ |
| 6 # PNACL_BIN_PATH=<path> ... | 6 # PNACL_BIN_PATH=<path> ... |
| 7 # | 7 # |
| 8 | 8 |
| 9 # LLVM_SRC_PATH is the path to the root of the checked out source code. This | 9 # LLVM_SRC_PATH is the path to the root of the checked out source code. This |
| 10 # directory should contain the configure script, the include/ and lib/ | 10 # directory should contain the configure script, the include/ and lib/ |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 IceGlobalInits.cpp \ | 189 IceGlobalInits.cpp \ |
| 190 IceInst.cpp \ | 190 IceInst.cpp \ |
| 191 IceInstARM32.cpp \ | 191 IceInstARM32.cpp \ |
| 192 IceInstMIPS32.cpp \ | 192 IceInstMIPS32.cpp \ |
| 193 IceInstX8632.cpp \ | 193 IceInstX8632.cpp \ |
| 194 IceIntrinsics.cpp \ | 194 IceIntrinsics.cpp \ |
| 195 IceLiveness.cpp \ | 195 IceLiveness.cpp \ |
| 196 IceOperand.cpp \ | 196 IceOperand.cpp \ |
| 197 IceRegAlloc.cpp \ | 197 IceRegAlloc.cpp \ |
| 198 IceRNG.cpp \ | 198 IceRNG.cpp \ |
| 199 IceSwitchLowering.cpp \ |
| 199 IceTargetLowering.cpp \ | 200 IceTargetLowering.cpp \ |
| 200 IceTargetLoweringARM32.cpp \ | 201 IceTargetLoweringARM32.cpp \ |
| 201 IceTargetLoweringMIPS32.cpp \ | 202 IceTargetLoweringMIPS32.cpp \ |
| 202 IceTargetLoweringX8632.cpp \ | 203 IceTargetLoweringX8632.cpp \ |
| 203 IceTargetLoweringX8664.cpp \ | 204 IceTargetLoweringX8664.cpp \ |
| 204 IceThreading.cpp \ | 205 IceThreading.cpp \ |
| 205 IceTimerTree.cpp \ | 206 IceTimerTree.cpp \ |
| 206 IceTranslator.cpp \ | 207 IceTranslator.cpp \ |
| 207 IceTypes.cpp \ | 208 IceTypes.cpp \ |
| 208 main.cpp \ | 209 main.cpp \ |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 | 363 |
| 363 docs: | 364 docs: |
| 364 doxygen Doxyfile | 365 doxygen Doxyfile |
| 365 @echo See file://`pwd`/docs/html/index.html | 366 @echo See file://`pwd`/docs/html/index.html |
| 366 | 367 |
| 367 clean: | 368 clean: |
| 368 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 369 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
| 369 | 370 |
| 370 clean-all: clean | 371 clean-all: clean |
| 371 rm -rf build/ docs/ | 372 rm -rf build/ docs/ |
| OLD | NEW |