home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / samples / hello / tryit.bat < prev   
Encoding:
DOS Batch File  |  1993-11-13  |  206 b   |  18 lines

  1. @echo off
  2. echo.
  3. echo Running go32 to get system information
  4. echo.
  5. go32
  6.  
  7. echo.
  8. echo Compiling a program
  9. echo.
  10. gcc -v hello.c -o hello
  11.  
  12. echo.
  13. echo Running the program
  14. echo.
  15. go32 hello
  16.  
  17. echo.
  18.