home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / diverses / leda / src / graphics / makefile.dos < prev    next >
Encoding:
Makefile  |  1992-06-07  |  285 b   |  19 lines

  1. .SWAP
  2.  
  3. LIB = ..\..\leda_W.lib
  4.  
  5. $(LIB): _win_basic.obj _win_input.obj _win_output.obj _turbo.obj 
  6.  
  7. .c.obj:
  8.     bcc -c -P -Qx -w- -mh $*.c
  9.     tlib /C $(LIB) +- $*.obj
  10.  
  11.  
  12. _turbo.obj: _turbo.c
  13.     bcc -c -Qx -w- -mh _turbo.c
  14.     tlib /C $(LIB) +- _turbo.obj
  15.  
  16.  
  17. clean:
  18.     del $(OBJECTS)
  19.