home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 21 / IOPROG_21.ISO / SOFT / OSLIB101.ZIP / SOURCE / DOC.BAT < prev    next >
Encoding:
DOS Batch File  |  1996-06-01  |  633 b   |  26 lines

  1.   @Echo Off
  2.   Goto DoLists
  3. :Return
  4.   FT_Doc OSLib.Mnu
  5.   If Exist Assembl.Bat Call Assembl.Bat
  6.   Del *.Ngo > Nul
  7.   Del *.Txt > Nul
  8.   Del *.Log > Nul
  9.   Del Assembl.Bat > Nul
  10.   Del Ngi\*.* /Y > Nul
  11.   If Exist OSLib.Ng Move OSLib.NG ..\Ng
  12.   Goto End
  13.  
  14. Rem This bit of code will compile any "lists" or tables that I want
  15. Rem to include in the Norton guide. FT_Doc will not handle these and
  16. Rem it's easier to do it like this that to start mucking around with
  17. Rem the source for FT_Doc.
  18.  
  19. :DoLists
  20.   Echo Compiling Source Files in Docs\
  21.   For %a In (Docs\*.Txt) Do Ngc %a
  22.   Move Docs\*.Ngo > Nul
  23.   Goto Return
  24.  
  25. :End
  26.