| 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 IceFixups.cpp \ | 188 IceFixups.cpp \ |
| 189 IceGlobalContext.cpp \ | 189 IceGlobalContext.cpp \ |
| 190 IceGlobalInits.cpp \ | 190 IceGlobalInits.cpp \ |
| 191 IceInst.cpp \ | 191 IceInst.cpp \ |
| 192 IceInstARM32.cpp \ | 192 IceInstARM32.cpp \ |
| 193 IceInstMIPS32.cpp \ | 193 IceInstMIPS32.cpp \ |
| 194 IceInstX8632.cpp \ | 194 IceInstX8632.cpp \ |
| 195 IceInstX8664.cpp \ | 195 IceInstX8664.cpp \ |
| 196 IceIntrinsics.cpp \ | 196 IceIntrinsics.cpp \ |
| 197 IceLiveness.cpp \ | 197 IceLiveness.cpp \ |
| 198 IceLoopAnalyzer.cpp \ |
| 198 IceOperand.cpp \ | 199 IceOperand.cpp \ |
| 199 IceRegAlloc.cpp \ | 200 IceRegAlloc.cpp \ |
| 200 IceRNG.cpp \ | 201 IceRNG.cpp \ |
| 201 IceSwitchLowering.cpp \ | 202 IceSwitchLowering.cpp \ |
| 202 IceTargetLowering.cpp \ | 203 IceTargetLowering.cpp \ |
| 203 IceTargetLoweringARM32.cpp \ | 204 IceTargetLoweringARM32.cpp \ |
| 204 IceTargetLoweringMIPS32.cpp \ | 205 IceTargetLoweringMIPS32.cpp \ |
| 205 IceTargetLoweringX8632.cpp \ | 206 IceTargetLoweringX8632.cpp \ |
| 206 IceTargetLoweringX8664.cpp \ | 207 IceTargetLoweringX8664.cpp \ |
| 207 IceThreading.cpp \ | 208 IceThreading.cpp \ |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 | 398 |
| 398 docs: | 399 docs: |
| 399 doxygen Doxyfile | 400 doxygen Doxyfile |
| 400 @echo See file://`pwd`/docs/html/index.html | 401 @echo See file://`pwd`/docs/html/index.html |
| 401 | 402 |
| 402 clean: | 403 clean: |
| 403 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 404 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
| 404 | 405 |
| 405 clean-all: clean | 406 clean-all: clean |
| 406 rm -rf build/ docs/ | 407 rm -rf build/ docs/ |
| OLD | NEW |