summaryrefslogtreecommitdiff
path: root/tools/build/v2/Jamroot.jam
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/v2/Jamroot.jam')
-rw-r--r--tools/build/v2/Jamroot.jam47
1 files changed, 0 insertions, 47 deletions
diff --git a/tools/build/v2/Jamroot.jam b/tools/build/v2/Jamroot.jam
deleted file mode 100644
index 73d86ab15b..0000000000
--- a/tools/build/v2/Jamroot.jam
+++ /dev/null
@@ -1,47 +0,0 @@
-
-path-constant SELF : . ;
-
-import path ;
-import package ;
-import os ;
-
-local ext = "" ;
-if [ os.on-windows ]
-{
- ext = ".exe" ;
-}
-
-
-package.install boost-build-engine boost-build
- : # properties
- : # binaries
- b2$(ext) bjam$(ext)
- ;
-
-local e1 = [ path.glob-tree $(SELF)/example : * : . .svn ] ;
-local e2 ;
-for e in $(e1)
-{
- e = [ path.native $(e) ] ;
- if [ CHECK_IF_FILE $(e) ]
- {
- e2 += $(e) ;
- }
-}
-
-package.install-data boost-build-core
- : # Which subdir of $prefix/share
- boost-build
- : # What to install
- $(SELF)/boost-build.jam
- $(SELF)/build-system.jam
- [ path.glob-tree $(SELF)/build : *.jam *.py ]
- [ path.glob-tree $(SELF)/kernel : *.jam *.py ]
- [ path.glob-tree $(SELF)/util : *.jam *.py ]
- [ path.glob-tree $(SELF)/tools : *.jam *.py *.xml *.xsl *.doxyfile *.hpp ]
- $(e2)
- : # What is the root of the directory
- <install-source-root>.
- ;
-
-alias install : boost-build-engine boost-build-core ; \ No newline at end of file