diff options
author | John Criswell <criswell@uiuc.edu> | 2003-09-11 18:04:30 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-09-11 18:04:30 +0000 |
commit | cd5a59fb5b185d7dc39af6c3b4bb7a45ad77c8e2 (patch) | |
tree | 7a27f9218a56b0a2db727ddece4c2bd0d38d6f21 | |
parent | 7e0a65db53755f13c72a73f402fcb71ce458ea86 (diff) | |
download | bcm5719-llvm-cd5a59fb5b185d7dc39af6c3b4bb7a45ad77c8e2.tar.gz bcm5719-llvm-cd5a59fb5b185d7dc39af6c3b4bb7a45ad77c8e2.zip |
Fixed SPEC so that it would run correctly with the new autoconf-style object
directory.
Cleaned up the Makefile so that it uses VPATH to find source files.
llvm-svn: 8477
-rw-r--r-- | llvm/test/Makefile.tests | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/llvm/test/Makefile.tests b/llvm/test/Makefile.tests index 7b18402e366..3bdea41f890 100644 --- a/llvm/test/Makefile.tests +++ b/llvm/test/Makefile.tests @@ -85,23 +85,14 @@ clean:: $(RM) -rf Output/ # Compile from X.c to Output/X.ll -Output/%.ll: $(SourceDir)/%.c $(LCC1) Output/.dir $(INCLUDES) - $(LCC) $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@ - Output/%.ll: %.c $(LCC1) Output/.dir $(INCLUDES) $(LCC) $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@ # Compile from X.cpp to Output/X.ll -Output/%.ll: $(SourceDir)/%.cpp $(LCC1XX) Output/.dir $(INCLUDES) - $(LCXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@ - Output/%.ll: %.cpp $(LCC1XX) Output/.dir $(INCLUDES) $(LCXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@ # Compile from X.cc to Output/X.ll -Output/%.ll: $(SourceDir)/%.cc $(LCC1XX) Output/.dir $(INCLUDES) - $(LCXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@ - Output/%.ll: %.cc $(LCC1XX) Output/.dir $(INCLUDES) $(LCXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@ @@ -114,27 +105,17 @@ Output/%.bc: Output/%.ll $(LGCCAS) # LLVM Assemble from X.ll to Output/X.bc. Because we are coming directly from # LLVM source, use the non-transforming assembler. # -Output/%.bc: $(SourceDir)/%.ll $(LAS) Output/.dir +Output/%.bc: %.ll $(LAS) Output/.dir $(LAS) -f $< -o $@ # # Testing versions of provided utilities... # -Output/%.tll: $(SourceDir)/%.c $(LCC1) Output/.dir $(INCLUDES) - @echo "======== Compiling $<" - $(LCC) $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@ || \ - ( rm -f $@; $(FAILURE) $@ ) - Output/%.tll: %.c $(LCC1) Output/.dir $(INCLUDES) @echo "======== Compiling $<" $(LCC) $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@ || \ ( rm -f $@; $(FAILURE) $@ ) -Output/%.tll: $(SourceDir)/%.cpp $(LCC1XX) Output/.dir $(INCLUDES) - @echo "======== Compiling $<" - $(LCXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@ || \ - ( rm -f $@; $(FAILURE) $@ ) - Output/%.tll: %.cpp $(LCC1XX) Output/.dir $(INCLUDES) @echo "======== Compiling $<" $(LCXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@ || \ |