Browse Source

Added info prints so that we know how far the program worked.

alex 26 years ago
parent
commit
ae375101a2
1 changed files with 13 additions and 1 deletions
  1. 13 1
      packages/opengl/c_linuxd.pp

+ 13 - 1
packages/opengl/c_linuxd.pp

@@ -67,9 +67,12 @@ var
   s: String;
   s: String;
   j: Integer;
   j: Integer;
 begin
 begin
+  WriteLn('File Generator for OpenGL related Units');
 
 
   // Load definition files
   // Load definition files
 
 
+  WriteLn('Loading definition files...');
+
   DefGL    := TDefReader.Create('gl.def');
   DefGL    := TDefReader.Create('gl.def');
   DefGLExt := TDefReader.Create('glext.def');
   DefGLExt := TDefReader.Create('glext.def');
   DefGLU   := TDefReader.Create('glu.def');
   DefGLU   := TDefReader.Create('glu.def');
@@ -79,6 +82,8 @@ begin
 
 
   // Build GL unit
   // Build GL unit
 
 
+  WriteLn('Generating GL unit for Linux...');
+
   Assign(f, 'linuxd/gl.pp');
   Assign(f, 'linuxd/gl.pp');
   Rewrite(f);
   Rewrite(f);
   Assign(tpl, 'gl_linux.tpl');
   Assign(tpl, 'gl_linux.tpl');
@@ -121,6 +126,8 @@ begin
 
 
   // Build GLUT unit
   // Build GLUT unit
 
 
+  WriteLn('Generating GLut unit for Linux...');
+
   Assign(f, 'linuxd/glut.pp');
   Assign(f, 'linuxd/glut.pp');
   Rewrite(f);
   Rewrite(f);
   Assign(tpl, 'glut_linux.tpl');
   Assign(tpl, 'glut_linux.tpl');
@@ -146,12 +153,17 @@ begin
   end;
   end;
   PrintCVSLogSection;
   PrintCVSLogSection;
   Close(f);
   Close(f);
+
+  WriteLn('Done...');
 end.
 end.
 
 
 
 
 {
 {
   $Log$
   $Log$
-  Revision 1.1  1999-11-28 17:55:22  sg
+  Revision 1.2  1999-12-01 00:55:44  alex
+  Added info prints so that we know how far the program worked.
+
+  Revision 1.1  1999/11/28 17:55:22  sg
   * Added new unit generation tools and auto-generated GL units for Linux
   * Added new unit generation tools and auto-generated GL units for Linux
 
 
 }
 }