[llvm-commits] [hlvm] r37994 - in /hlvm/trunk/hlvm: Makefile Reader/ Reader/Makefile Reader/XML/ Reader/XML/Makefile Writer/ Writer/Makefile
Reid Spencer
reid at x10sys.com
Sat Jul 7 16:58:46 PDT 2007
Author: reid
Date: Sat Jul 7 18:58:45 2007
New Revision: 37994
URL: http://llvm.org/viewvc/llvm-project?rev=37994&view=rev
Log:
Add the build infrastructure for the Reader and Writer libraries.
Added:
hlvm/trunk/hlvm/Reader/
hlvm/trunk/hlvm/Reader/Makefile (with props)
hlvm/trunk/hlvm/Reader/XML/
hlvm/trunk/hlvm/Reader/XML/Makefile (with props)
hlvm/trunk/hlvm/Writer/
hlvm/trunk/hlvm/Writer/Makefile (with props)
Modified:
hlvm/trunk/hlvm/Makefile
Modified: hlvm/trunk/hlvm/Makefile
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/hlvm/Makefile?rev=37994&r1=37993&r2=37994&view=diff
==============================================================================
--- hlvm/trunk/hlvm/Makefile (original)
+++ hlvm/trunk/hlvm/Makefile Sat Jul 7 18:58:45 2007
@@ -7,6 +7,6 @@
#
# List all of the subdirectories that we will compile.
#
-DIRS=Base AST
+DIRS=Base AST Reader Writer
include $(LEVEL)/Makefile.hlvm
Added: hlvm/trunk/hlvm/Reader/Makefile
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/hlvm/Reader/Makefile?rev=37994&view=auto
==============================================================================
--- hlvm/trunk/hlvm/Reader/Makefile (added)
+++ hlvm/trunk/hlvm/Reader/Makefile Sat Jul 7 18:58:45 2007
@@ -0,0 +1,12 @@
+##===- hlvm/Reader/Makefile --------------------------------*- Makefile -*-===##
+#
+# Relative path to the top of the source tree.
+#
+LEVEL=../..
+
+#
+# List all of the subdirectories that we will compile.
+#
+DIRS=XML
+
+include $(LEVEL)/Makefile.hlvm
Propchange: hlvm/trunk/hlvm/Reader/Makefile
------------------------------------------------------------------------------
svn:executable = *
Added: hlvm/trunk/hlvm/Reader/XML/Makefile
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/hlvm/Reader/XML/Makefile?rev=37994&view=auto
==============================================================================
--- hlvm/trunk/hlvm/Reader/XML/Makefile (added)
+++ hlvm/trunk/hlvm/Reader/XML/Makefile Sat Jul 7 18:58:45 2007
@@ -0,0 +1,12 @@
+##===- hlvm/Reader/XML/Makefile ----------------------------*- Makefile -*-===##
+#
+# Relative path to the top of the source tree.
+#
+LEVEL=../../..
+
+#
+# List all of the subdirectories that we will compile.
+#
+DIRS=
+
+include $(LEVEL)/Makefile.hlvm
Propchange: hlvm/trunk/hlvm/Reader/XML/Makefile
------------------------------------------------------------------------------
svn:executable = *
Added: hlvm/trunk/hlvm/Writer/Makefile
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/hlvm/Writer/Makefile?rev=37994&view=auto
==============================================================================
--- hlvm/trunk/hlvm/Writer/Makefile (added)
+++ hlvm/trunk/hlvm/Writer/Makefile Sat Jul 7 18:58:45 2007
@@ -0,0 +1,12 @@
+##===- hlvm/Writer/Makefile --------------------------------*- Makefile -*-===##
+#
+# Relative path to the top of the source tree.
+#
+LEVEL=../..
+
+#
+# List all of the subdirectories that we will compile.
+#
+DIRS=
+
+include $(LEVEL)/Makefile.hlvm
Propchange: hlvm/trunk/hlvm/Writer/Makefile
------------------------------------------------------------------------------
svn:executable = *
More information about the llvm-commits
mailing list