[llvm-commits] [llvm-top] r40330 - in /llvm-top/trunk: build clean get info install update

Reid Spencer rspencer at reidspencer.com
Sat Jul 21 00:17:44 PDT 2007


Author: reid
Date: Sat Jul 21 02:17:44 2007
New Revision: 40330

URL: http://llvm.org/viewvc/llvm-project?rev=40330&view=rev
Log:
Fix the documentation in each script and point the reader to the README.txt

Modified:
    llvm-top/trunk/build
    llvm-top/trunk/clean
    llvm-top/trunk/get
    llvm-top/trunk/info
    llvm-top/trunk/install
    llvm-top/trunk/update

Modified: llvm-top/trunk/build
URL: http://llvm.org/viewvc/llvm-project/llvm-top/trunk/build?rev=40330&r1=40329&r2=40330&view=diff

==============================================================================
--- llvm-top/trunk/build (original)
+++ llvm-top/trunk/build Sat Jul 21 02:17:44 2007
@@ -5,24 +5,13 @@
 # University of Illinois Open Source License. See LICENSE.TXT for details.
 # 
 #===------------------------------------------------------------------------===#
-# This script allows LLVM modules to be checked out, configured and built all in
-# one step.  Use it like this:
 #
-#    cd llvm-top
-#    ./build {module_names} {configure_options} {build_options}
-#
-# where:
-#    {module_names} is a list of modules you want to configure (e.g. llvm, hlvm)
-#    {configure_options} start with -- and are passed to the configure tool
-#      of *all* the modules you are building that need configuration.
-#    {build_options} contain an = and are passed to the build tool of *all*
-#      the modules you are building.
-#
-# Note that the script will checkout and configure any dependent modules as well
-# as the ones specified in {module_names} so it is only necessary to specify the
-# minimal set you're interested in.
+# This script allows LLVM modules to be built. Specify the modules you want to
+# build on the command line; or leave it blank to specify the currently checked
+# out modules. Any dependencies will be checked out and built before the 
+# specified list. You can also specify build options. See the README.txt file.
 
-# Get the library code
+# Get the library.
 . ./library.sh
 
 # Process the arguments so that anything starting with - is passed down to the

Modified: llvm-top/trunk/clean
URL: http://llvm.org/viewvc/llvm-project/llvm-top/trunk/clean?rev=40330&r1=40329&r2=40330&view=diff

==============================================================================
--- llvm-top/trunk/clean (original)
+++ llvm-top/trunk/clean Sat Jul 21 02:17:44 2007
@@ -8,7 +8,7 @@
 
 # This script allows easier cleaning of LLVM modules. Just specify the names
 # of the modules on the command line and they and their dependencies will be
-# cleaned.
+# cleaned. See the README.txt file.
 
 . ./library.sh
 

Modified: llvm-top/trunk/get
URL: http://llvm.org/viewvc/llvm-project/llvm-top/trunk/get?rev=40330&r1=40329&r2=40330&view=diff

==============================================================================
--- llvm-top/trunk/get (original)
+++ llvm-top/trunk/get Sat Jul 21 02:17:44 2007
@@ -7,7 +7,9 @@
 #===------------------------------------------------------------------------===#
 
 # This script allows easier checkout of LLVM modules. Just specify the names
-# of the modules on the command line.
+# of the modules on the command line. See the README.txt file.
+
+# Get the library.
 . ./library.sh
 
 # Get the list of modules

Modified: llvm-top/trunk/info
URL: http://llvm.org/viewvc/llvm-project/llvm-top/trunk/info?rev=40330&r1=40329&r2=40330&view=diff

==============================================================================
--- llvm-top/trunk/info (original)
+++ llvm-top/trunk/info Sat Jul 21 02:17:44 2007
@@ -1,13 +1,16 @@
 #!/bin/sh
-#                               update script
+#                                   info script
 # 
 # This file was developed by Reid Spencer and is distributed under the
 # University of Illinois Open Source License. See LICENSE.TXT for details.
 # 
 #===------------------------------------------------------------------------===#
 
-# This script allows easier checkout of LLVM modules. Just specify the names
-# of the modules on the command line.
+# This script gets subversion information about each module checked out. Just
+# specify the list of modules your' interested in or specify none to get show
+# information about the currently checked out modules. See the README.txt file.
+
+# Get the library.
 . ./library.sh
 
 # Get the list of modules

Modified: llvm-top/trunk/install
URL: http://llvm.org/viewvc/llvm-project/llvm-top/trunk/install?rev=40330&r1=40329&r2=40330&view=diff

==============================================================================
--- llvm-top/trunk/install (original)
+++ llvm-top/trunk/install Sat Jul 21 02:17:44 2007
@@ -6,9 +6,10 @@
 # 
 #===------------------------------------------------------------------------===#
 
-# This script allows easier installing of LLVM modules. Just specify the names
+# This script allows easier installation of LLVM modules. Just specify the names
 # of the modules on the command line and they and their dependencies will be
-# checked out, built and installed. Use INSTALL_PREFIX= to process
+# checked out, built and installed. Use PREFIX= to specify where the modules
+# should be installed. See the README.txt file.
 
 . ./library.sh
 

Modified: llvm-top/trunk/update
URL: http://llvm.org/viewvc/llvm-project/llvm-top/trunk/update?rev=40330&r1=40329&r2=40330&view=diff

==============================================================================
--- llvm-top/trunk/update (original)
+++ llvm-top/trunk/update Sat Jul 21 02:17:44 2007
@@ -6,8 +6,10 @@
 # 
 #===------------------------------------------------------------------------===#
 
-# This script allows easier checkout of LLVM modules. Just specify the names
-# of the modules on the command line.
+# This script allows you to easily update a set of checked out modules. Just
+# specify the modules to be updated (or checked out) on the command line. 
+
+# Get the library.
 . ./library.sh
 
 # Get the list of modules





More information about the llvm-commits mailing list