* Jamfile, src/Jamfile, src/*/Jamfile: Formatted.  Slight changes
to give files identical structure.
diff --git a/src/Jamfile b/src/Jamfile
index 89cd844..47248b4 100644
--- a/src/Jamfile
+++ b/src/Jamfile
@@ -1,15 +1,18 @@
-SubDir FT2_TOP src ;
+# FreeType 2 src Jamfile (c) 2001 David Turner
+#
 
-# we need to add "freetype/src" to the current includ path in order
-# to compile any part of FreeType 2..
+SubDir  FT2_TOP src ;
+
+# We need to add "freetype/src" to the current include path in order to
+# compile any part of FreeType 2.
 #
 SubDirHdrs  [ FT2_SubDir  src ] ;
 
-# the file <freetype/internal/internal.h> is used to define macros that are
-# later used in #include statements.. it needs to be parsed in order to
-# record these definitions..
+# The file <freetype/internal/internal.h> is used to define macros that are
+# later used in #include statements.  It needs to be parsed in order to
+# record these definitions.
 #
-HDRMACRO [ FT2_SubDir  include internal internal.h ] ;
+HDRMACRO  [ FT2_SubDir  include internal internal.h ] ;
 
 SubInclude  FT2_TOP src autohint ;
 SubInclude  FT2_TOP src base ;
@@ -26,3 +29,4 @@
 SubInclude  FT2_TOP src type1 ;
 SubInclude  FT2_TOP src winfonts ;
 
+# end of src Jamfile