home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / tools / bgi_tool / makefile < prev    next >
Makefile  |  1989-05-30  |  598b  |  24 lines

  1. #
  2. #    This MAKEFILE is used to build the debug.BGI file from its
  3. #    component files.
  4. #
  5.  
  6. debug.bgi :    debug.bin
  7.         bh  debug.bin  debug.bgi  DEBUG
  8.         bgiobj      debug.bgi n_debug.obj _DEBUG_driver
  9.         bgiobj /F debug.bgi f_debug.obj _DEBUG_driver_far
  10.  
  11. debug.bin :    debug.exe
  12.         exetobin debug.exe debug.bin
  13.  
  14. # change  \c\lib\cs in the tlink statement below:
  15. debug.exe :    debvect.obj debug.obj
  16.         tlink debvect+debug, debug, debug, c:\tc\lib\cs /m/s ;
  17.  
  18. debvect.obj:    debvect.asm  device.inc
  19.         tasm /ml debvect ;
  20.  
  21. debug.obj:    debug.c
  22.         tcc -c -v -r- -K -O -Z -ms -zG -zBDATA -zDGRAPH debug.c
  23.  
  24.