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> LLVM_BIN_PATH=<path> ... | 5 # make LLVM_SRC_PATH=<path> LLVM_BIN_PATH=<path> ... |
6 # | 6 # |
7 | 7 |
8 # LLVM_SRC_PATH is the path to the root of the checked out source code. This | 8 # LLVM_SRC_PATH is the path to the root of the checked out source code. This |
9 # directory should contain the configure script, the include/ and lib/ | 9 # directory should contain the configure script, the include/ and lib/ |
10 # directories of LLVM, Clang in tools/clang/, etc. | 10 # directories of LLVM, Clang in tools/clang/, etc. |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 LLVM_BIN_PATH=$(LLVM_BIN_PATH) \ | 65 LLVM_BIN_PATH=$(LLVM_BIN_PATH) \ |
66 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv tests_lit | 66 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv tests_lit |
67 | 67 |
68 # TODO: Fix the use of wildcards. | 68 # TODO: Fix the use of wildcards. |
69 format: | 69 format: |
70 $(LLVM_BIN_PATH)/clang-format -style=LLVM -i \ | 70 $(LLVM_BIN_PATH)/clang-format -style=LLVM -i \ |
71 src/Ice*.h src/Ice*.cpp src/llvm2ice.cpp | 71 src/Ice*.h src/Ice*.cpp src/llvm2ice.cpp |
72 | 72 |
73 clean: | 73 clean: |
74 rm -rf llvm2ice *.o build/ | 74 rm -rf llvm2ice *.o build/ |
OLD | NEW |