Chromium Code Reviews| 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 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 503 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html | 503 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html |
| 504 | 504 |
| 505 docs: | 505 docs: |
| 506 doxygen Doxyfile | 506 doxygen Doxyfile |
| 507 @echo See file://`pwd`/docs/html/index.html | 507 @echo See file://`pwd`/docs/html/index.html |
| 508 | 508 |
| 509 clean: | 509 clean: |
| 510 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 510 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
| 511 | 511 |
| 512 clean-all: clean | 512 clean-all: clean |
| 513 » rm -rf build/ docs/ | 513 » rm -rf build/ docs/html |
|
Jim Stichnoth
2016/01/06 19:52:38
I think you need to do something similar in .gitig
rkotlerimgtec
2016/01/06 22:28:30
Done.
| |
| OLD | NEW |