summaryrefslogtreecommitdiff
path: root/Makefile.rules
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-02-14 04:27:15 +0000
committerChris Lattner <sabre@nondot.org>2006-02-14 04:27:15 +0000
commit77efe27ef1b2d3c305bb0f95cc19a5185d80b7b7 (patch)
treea57392d6444b0723e67d82dc47986ec94156cc4b /Makefile.rules
parentd25ad6108642655a6f81adfa4f6630e1b37de805 (diff)
downloadllvm-77efe27ef1b2d3c305bb0f95cc19a5185d80b7b7.tar.gz
llvm-77efe27ef1b2d3c305bb0f95cc19a5185d80b7b7.tar.bz2
llvm-77efe27ef1b2d3c305bb0f95cc19a5185d80b7b7.tar.xz
Wrap a couple more long lines
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26159 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 0ec0ce2938..9a3c505075 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -10,7 +10,7 @@
# This file is included by all of the LLVM makefiles. For details on how to use
# it properly, please see the document MakefileGuide.html in the docs directory.
#
-#===-----------------------------------------------------------------------====
+#===-----------------------------------------------------------------------====#
################################################################################
# TARGETS: Define standard targets that can be invoked
@@ -961,13 +961,13 @@ ifdef SHARED_LIBRARY
$(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
$(Echo) "Compiling $*.cpp for $(BuildMode) build (PIC)"
- $(Verb) if $(LTCompile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ; \
+ $(Verb) if $(LTCompile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ;\
then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
$(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
$(Echo) "Compiling $*.cc for $(BuildMode) build (PIC)"
- $(Verb) if $(LTCompile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ; \
+ $(Verb) if $(LTCompile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ;\
then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
@@ -1530,7 +1530,8 @@ $(DistDir)/.makedistdir: $(DistSources)
done
$(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
$(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
- $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o -name .svn \) -print` ;\
+ $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
+ -name .svn \) -print` ;\
$(MAKE) dist-hook ; \
$(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
-o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \