| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 ifndef MINIMAL | 210 ifndef MINIMAL |
| 211 SRCS += IceConverter.cpp \ | 211 SRCS += IceConverter.cpp \ |
| 212 IceTypeConverter.cpp | 212 IceTypeConverter.cpp |
| 213 endif | 213 endif |
| 214 | 214 |
| 215 OBJS=$(patsubst %.cpp, $(OBJDIR)/%.o, $(SRCS)) | 215 OBJS=$(patsubst %.cpp, $(OBJDIR)/%.o, $(SRCS)) |
| 216 SB_OBJS=$(patsubst %.cpp, $(SB_OBJDIR)/%.o, $(SRCS)) | 216 SB_OBJS=$(patsubst %.cpp, $(SB_OBJDIR)/%.o, $(SRCS)) |
| 217 | 217 |
| 218 UNITTEST_SRCS = \ | 218 UNITTEST_SRCS = \ |
| 219 BitcodeMunge.cpp \ | 219 BitcodeMunge.cpp \ |
| 220 IceAssemblerX8632Test.cpp \ |
| 220 IceELFSectionTest.cpp \ | 221 IceELFSectionTest.cpp \ |
| 221 IceParseInstsTest.cpp | 222 IceParseInstsTest.cpp |
| 222 | 223 |
| 223 UNITTEST_OBJS = $(patsubst %.cpp, $(OBJDIR)/unittest/%.o, $(UNITTEST_SRCS)) | 224 UNITTEST_OBJS = $(patsubst %.cpp, $(OBJDIR)/unittest/%.o, $(UNITTEST_SRCS)) |
| 224 UNITTEST_LIB_OBJS = $(filter-out $(OBJDIR)/main.o,$(OBJS)) | 225 UNITTEST_LIB_OBJS = $(filter-out $(OBJDIR)/main.o,$(OBJS)) |
| 225 | 226 |
| 226 # Keep all the first target so it's the default. | 227 # Keep all the first target so it's the default. |
| 227 all: $(OBJDIR)/pnacl-sz make_symlink runtime | 228 all: $(OBJDIR)/pnacl-sz make_symlink runtime |
| 228 | 229 |
| 229 ifdef TSAN | 230 ifdef TSAN |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 | 358 |
| 358 docs: | 359 docs: |
| 359 doxygen Doxyfile | 360 doxygen Doxyfile |
| 360 @echo See file://`pwd`/docs/html/index.html | 361 @echo See file://`pwd`/docs/html/index.html |
| 361 | 362 |
| 362 clean: | 363 clean: |
| 363 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 364 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
| 364 | 365 |
| 365 clean-all: clean | 366 clean-all: clean |
| 366 rm -rf build/ docs/ | 367 rm -rf build/ docs/ |
| OLD | NEW |