diff options
| author | Graydon Hoare <[email protected]> | 2011-03-21 23:06:42 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-21 23:06:42 -0700 |
| commit | 7ac885ee8cb18fc2cb974cff06190532680cf29b (patch) | |
| tree | f1a354cd2a763949a29856bac7e158d0f4f77b3b /src/Makefile | |
| parent | Make floating-point operations work (neg, add, sub, mul, div, rem, (diff) | |
| download | rust-7ac885ee8cb18fc2cb974cff06190532680cf29b.tar.xz rust-7ac885ee8cb18fc2cb974cff06190532680cf29b.zip | |
Repair some fallout from pcwalton's last few build changes.
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile index 630babf3..f5b3fe9b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -321,12 +321,12 @@ RUNTIME_HDR := rt/globals.h \ RUNTIME_INCS := -Irt/isaac -Irt/uthash RUNTIME_OBJS := $(RUNTIME_CS:.cpp=.o) -SUPPORT_CS := $(addprefix llvmext/, \ +SUPPORT_CS := $(addprefix rustllvm/, \ MachOObjectFile.cpp Object.cpp RustWrapper.cpp) -SUPPORT_HDR := llvmext/include/llvm-c/Object.h +SUPPORT_HDR := rustllvm/include/llvm-c/Object.h -SUPPORT_INCS := -iquote $(CFG_LLVM_INCDIR) -iquote llvmext/include +SUPPORT_INCS := -iquote $(CFG_LLVM_INCDIR) -iquote rustllvm/include SUPPORT_OBJS := $(SUPPORT_CS:.cpp=.o) SUPPORT_LIBS := $(CFG_LLVM_LDFLAGS) $(CFG_LLVM_LIBS) @@ -363,7 +363,7 @@ rt/%.o: rt/%.cpp $(MKFILES) @$(call CFG_ECHO, compile: $<) $(CFG_QUIET)$(call CFG_COMPILE_C, $@, $(RUNTIME_INCS)) $< -llvmext/%.o: llvmext/%.cpp $(MKFILES) +rustllvm/%.o: rustllvm/%.cpp $(MKFILES) @$(call CFG_ECHO, compile: $<) $(CFG_QUIET)$(call CFG_COMPILE_C, $@, $(CFG_LLVM_CXXFLAGS) \ $(SUPPORT_INCS)) $< |