[llvm-commits] [hlvm] r38093 - in /hlvm/trunk: SConstruct docs/SConscript

Reid Spencer reid at x10sys.com
Sat Jul 7 16:59:46 PDT 2007


Author: reid
Date: Sat Jul  7 18:59:46 2007
New Revision: 38093

URL: http://llvm.org/viewvc/llvm-project?rev=38093&view=rev
Log:
Add an SConscript for the docs directory (not functioning yet)

Added:
    hlvm/trunk/docs/SConscript
Modified:
    hlvm/trunk/SConstruct

Modified: hlvm/trunk/SConstruct
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/SConstruct?rev=38093&r1=38092&r2=38093&view=diff

==============================================================================
--- hlvm/trunk/SConstruct (original)
+++ hlvm/trunk/SConstruct Sat Jul  7 18:59:46 2007
@@ -24,4 +24,4 @@
 from os.path import join as pjoin
 env = hlvm.GetBuildEnvironment(COMMAND_LINE_TARGETS,ARGUMENTS)
 Export('env')
-hlvm.Dirs(env,['hlvm','tools','test'])
+hlvm.Dirs(env,['hlvm','tools','test','docs'])

Added: hlvm/trunk/docs/SConscript
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/docs/SConscript?rev=38093&view=auto

==============================================================================
--- hlvm/trunk/docs/SConscript (added)
+++ hlvm/trunk/docs/SConscript Sat Jul  7 18:59:46 2007
@@ -0,0 +1,26 @@
+#===-- Build Script For docs ----------------------------------*- Python -*-===#
+#
+#                      High Level Virtual Machine (HLVM)
+#
+# Copyright (C) 2006 Reid Spencer. All Rights Reserved.
+#
+# This software is free software; you can redistribute it and/or modify it 
+# under the terms of the GNU Lesser General Public License as published by 
+# the Free Software Foundation; either version 2.1 of the License, or (at 
+# your option) any later version.
+#
+# This software is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for 
+# more details.
+#
+# You should have received a copy of the GNU Lesser General Public License 
+# along with this library in the file named LICENSE.txt; if not, write to the 
+# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+# MA 02110-1301 USA
+#
+#===----------------------------------------------------------------------===#
+Import('env')
+#if 'doxygen' in COMMAND_LINE_TARGETS:
+#  from build import doxygen
+#  doxygen.Doxygen(env)





More information about the llvm-commits mailing list