home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / grafik / cbgi111 / src / revn9 / makefile next >
Encoding:
Makefile  |  1990-06-15  |  425 b   |  22 lines

  1. #
  2. #    This MAKEFILE is used to build the NN9.BGI file from its
  3. #    component files.
  4. #
  5.  
  6. !include "defines.mak"
  7.  
  8. nn9.bgi : nn9.bin
  9.     bh  nn9.bin  nn9.bgi  NN9
  10.  
  11. nn9.bin : nn9.exe
  12.     exetobin nn9.exe nn9.bin
  13.  
  14. nn9.exe : nn9.obj nn9line.obj $(cbgilib) $(clib)
  15.     $(cl) nn9 nn9line, nn9,, $(cbgilib) $(clib)
  16.  
  17. nn9.obj: nn9.c  $(bgih) nn9.h
  18.     $(cc) nn9.c
  19.  
  20. nn9line.obj: nn9line.c $(bgiplineh) $(bgih) nn9.h
  21.     $(cc) nn9line.c
  22.