Do not emit FunctionBlock blocks for external functions. This shrinks
[oota-llvm.git] / Makefile.rules
index 36c9b6c05cecb07a281c6dc321b766a4efe7cfea..3f817e334039400cf9bfbdb28ef0e6c92c8bc385 100644 (file)
@@ -77,7 +77,7 @@ $(filter-out clean clean-local,UserTargets):: $(BUILT_SOURCES)
 
 clean-local::
 ifneq ($(strip $(BUILT_SOURCES)),)
-       $(Verb) $(RM) -f $(BUILT_SOURCES)
+       -$(Verb) $(RM) -f $(BUILT_SOURCES)
 endif
 
 $(BUILT_SOURCES) : $(ObjMakefiles)
@@ -222,6 +222,14 @@ else
   LD.Flags += -rpath $(LibDir)
 endif
 
+ifdef TOOL_VERBOSE
+  C.Flags += -v
+  CXX.Flags += -v
+  LD.Flags += -v
+  BCLinkLib.Flags += -v
+  VERBOSE := 1
+endif
+
 # Adjust settings for verbose mode
 ifndef VERBOSE
   Verb := @
@@ -268,11 +276,12 @@ Link          = $(LIBTOOL) $(LibTool.Flags) --mode=link $(CXX) $(CPP.Flags) \
                $(CompileCommonOpts) $(LD.Flags) $(Strip)
 Relink        = $(LIBTOOL) $(LibTool.Flags) --mode=link $(CXX) $(CPP.Flags) \
                 $(CompileCommonOpts)
-BCLinkLib     = $(LLVMGCC) -shared -nostdlib
+BCLinkLib     = $(LLVMGCC) -shared -nostdlib $(BCLinkLib.Flags)
 LTInstall     = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL)
 Burg          = $(BURG) -I $(BUILD_SRC_DIR)
 TableGen      = $(TBLGEN) -I $(BUILD_SRC_DIR)
 Archive       = $(AR) $(AR.Flags)
+LArchive      = $(ToolDir)/llvm-ar rcsf
 ifdef RANLIB
 Ranlib        = $(RANLIB)
 else
@@ -374,7 +383,7 @@ SubDirs += $(PARALLEL_DIRS)
 # recursive targets are added.
 all      :: $(addsuffix /.makeall      ,$(PARALLEL_DIRS))
 clean    :: $(addsuffix /.makeclean    ,$(PARALLEL_DIRS))
-clean-all:: $(addsuffix /.makecleanall ,$(PARALLEL_DIRS))
+clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
 check    :: $(addsuffix /.makecheck    ,$(PARALLEL_DIRS))
 install  :: $(addsuffix /.makeinstall  ,$(PARALLEL_DIRS))
 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
@@ -460,7 +469,7 @@ $(LibName.LA): $(BUILT_SOURCES) $(ObjectsLO) $(LibDir)/.dir
 
 clean-local::
 ifneq ($(strip $(LibName.LA)),)
-       $(Verb) $(RM) -f $(LibName.LA)
+       -$(Verb) $(RM) -f $(LibName.LA)
 endif
 
 DestSharedLib = $(libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
@@ -474,7 +483,7 @@ $(DestSharedLib): $(libdir) $(LibName.LA)
 
 uninstall-local:: 
        $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
-       $(Verb) $(RM) -f $(DestSharedLib)
+       -$(Verb) $(RM) -f $(libdir)/lib$(LIBRARYNAME).*
 
 endif
 
@@ -504,7 +513,7 @@ $(LibName.BC): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir
 
 clean-local::
 ifneq ($(strip $(LibName.BC)),)
-       $(Verb) $(RM) -f $(LibName.BC)
+       -$(Verb) $(RM) -f $(LibName.BC)
 endif
 
 DestBytecodeLib = $(bytecode_libdir)/lib$(LIBRARYNAME).bc
@@ -517,7 +526,7 @@ $(DestBytecodeLib): $(bytecode_libdir) $(LibName.BC)
 
 uninstall-local::
        $(Echo) Uninstalling $(BuildMode) Bytecode Library $(DestBytecodeLib)
-       $(Verb) $(RM) -f $(DestBytecodeLib)
+       -$(Verb) $(RM) -f $(DestBytecodeLib)
 
 endif
 
@@ -536,7 +545,7 @@ $(LibName.O): $(BUILT_SOURCES) $(ObjectsO) $(LibDir)/.dir
 
 clean-local::
 ifneq ($(strip $(LibName.O)),)
-       $(Verb) $(RM) -f $(LibName.O)
+       -$(Verb) $(RM) -f $(LibName.O)
 endif
 
 DestRelinkedLib = $(libdir)/$(LIBRARYNAME).o
@@ -549,7 +558,7 @@ $(DestRelinkedLib): $(libdir) $(LibName.O)
 
 uninstall-local::
        $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
-       $(Verb) $(RM) -f $(DestRelinkedLib)
+       -$(Verb) $(RM) -f $(DestRelinkedLib)
 
 endif
 
@@ -564,13 +573,13 @@ all-local:: $(LibName.A)
 
 $(LibName.A): $(BUILT_SOURCES) $(ObjectsO) $(LibDir)/.dir
        $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
-       $(Verb)$(RM) -f $@
+       -$(Verb) $(RM) -f $@
        $(Verb) $(Archive) $@ $(ObjectsO)
        $(Verb) $(Ranlib) $@
 
 clean-local::
 ifneq ($(strip $(LibName.A)),)
-       $(Verb) $(RM) -f $(LibName.A)
+       -$(Verb) $(RM) -f $(LibName.A)
 endif
 
 DestArchiveLib := $(libdir)/lib$(LIBRARYNAME).a
@@ -584,7 +593,7 @@ $(DestArchiveLib): $(libdir) $(LibName.A)
 
 uninstall-local::
        $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
-       $(Verb) $(RM) -f $(DestArchiveLib)
+       -$(Verb) $(RM) -f $(DestArchiveLib)
 
 endif
 
@@ -635,7 +644,7 @@ all-local:: $(ToolBuildPath)
 
 clean-local::
 ifneq ($(strip $(ToolBuildPath)),)
-       $(Verb) $(RM) -f $(ToolBuildPath)
+       -$(Verb) $(RM) -f $(ToolBuildPath)
 endif
 
 $(ToolBuildPath): $(BUILT_SOURCES) $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)\
@@ -655,7 +664,7 @@ $(DestTool): $(bindir) $(ToolBuildPath)
 
 uninstall-local::
        $(Echo) Uninstalling $(BuildMode) $(DestTool)
-       $(Verb) $(RM) -f $(DestTool)
+       -$(Verb) $(RM) -f $(DestTool)
 
 endif
 
@@ -811,7 +820,7 @@ $(INCFiles) : $(TBLGEN) $(TDFiles)
        $(Verb) $(TableGen) -gen-emitter -o $@ $<
 
 clean-local::
-       $(Verb) $(RM) -f $(INCFiles)
+       -$(Verb) $(RM) -f $(INCFiles)
 
 endif
 
@@ -847,6 +856,7 @@ LexOutput := $(strip $(patsubst %.l,%.cpp,$(LexFiles)))
          > $@
 
 clean-local::
+       -$(Verb) $(RM) -f $(LexOutput)
        $(Verb) $(RM) -f $(LexOutput)
 
 endif
@@ -875,6 +885,7 @@ YaccOutput := $(addprefix $(patsubst %.y,%,$(YaccFiles)),.h .cpp .output)
        $(Verb) $(MV) -f $*.tab.h $*.h
 
 clean-local::
+       -$(Verb) $(RM) -f $(YaccOutput)
        $(Verb) $(RM) -f $(YaccOutput)
 endif
 
@@ -901,22 +912,36 @@ endif
 # errors or disastrous removal.
 clean-local::
 ifneq ($(strip $(ObjDir)),)
-       $(Verb) $(RM) -rf $(ObjDir)
+       -$(Verb) $(RM) -rf $(ObjDir)
 endif
-       $(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
+       -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
-       $(Verb) $(RM) -f *$(SHLIBEXT)
+       -$(Verb) $(RM) -f *$(SHLIBEXT)
 endif
 
 clean-all-local::
-       $(Verb) $(RM) -rf Debug Release Profile
+       -$(Verb) $(RM) -rf Debug Release Profile
 
 # Build tags database for Emacs/Xemacs:
-tags:: TAGS
+tags:: TAGS CTAGS
+
 TAGS: 
-       find include lib tools examples -name '*.cpp' -o -name '*.h' | \
+       find $(BUILD_SRC_ROOT)/include $(BUILD_SRC_ROOT)/lib \
+          $(BUILD_SRC_ROOT)/tools $(BUILD_SRC_ROOT)/examples \
+          $(BUILD_OBJ_ROOT)/include $(BUILD_OBJ_ROOT)/lib \
+          $(BUILD_OBJ_ROOT)/tools $(BUILD_OBJ_ROOT)/examples \
+        -name '*.cpp' -o -name '*.h' | \
         $(ETAGS) $(ETAGSFLAGS) -
 
+CTAGS:
+       find $(BUILD_SRC_ROOT)/include $(BUILD_SRC_ROOT)/lib \
+          $(BUILD_SRC_ROOT)/tools $(BUILD_SRC_ROOT)/examples \
+          $(BUILD_OBJ_ROOT)/include $(BUILD_OBJ_ROOT)/lib \
+          $(BUILD_OBJ_ROOT)/tools $(BUILD_OBJ_ROOT)/examples \
+          \( -name '*.cpp' -o -name '*.h' \) -print | \
+          ctags -ImtT -o $(BUILD_OBJ_ROOT)/CTAGS -L -
+
+
 ###############################################################################
 # DEPENDENCIES: Include the dependency files if we should
 ###############################################################################
@@ -1041,7 +1066,7 @@ dist-check:: $(DistCheckTop) $(DistTarGZip)
 
 dist-clean::
        $(Echo) Cleaning distribution files
-       $(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) $(DistCheckDir)
+       -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) $(DistCheckDir)
 
 endif