]> git.tdb.fi Git - builder.git/commitdiff
Add a short section about using Builder to Readme.txt
authorMikko Rasa <tdb@tdb.fi>
Fri, 10 Aug 2007 18:59:42 +0000 (18:59 +0000)
committerMikko Rasa <tdb@tdb.fi>
Fri, 10 Aug 2007 18:59:42 +0000 (18:59 +0000)
Readme.txt

index dda34d6e6fc87cb58a7efdab7e35a8eb3d1e7d8b..6b6e3569e48c45283d450be887e66b882bfce2b7 100644 (file)
@@ -25,3 +25,17 @@ need to have their sources available.  By default, it will look at the parent
 directory of builder.  You can change this by setting the LIBPATH evironment
 variable for the script.  If everything goes well, you should have a
 builder-stage1 binary that you can use to build a normal version of Builder.
+
+
+* Using Builder in your project
+
+To use Builder, you need to create a Build file that tells what it should
+build.  This file defines two main types of entities: packages and components.
+usually there is only one package definition in a Build file.
+
+The Build file uses a C-like structured language.  It consists of statements
+and blocks.  Statements are terminated with a semicolon (';').  Blocks are
+enclosed in braces ('{' and '}').  If a statement contains a block of
+substatements, the semicolon comes after the closing brace.
+
+For a simple example, look at Builder's own Build file.