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

  1. #------------------------------------------------------------------------------
  2. # DOS (TURBO C++)
  3. #------------------------------------------------------------------------------
  4.  
  5. .SWAP
  6.  
  7. CFLAGS = -P -Qx -w- -mh
  8. LIB    = ..\..\leda_L.lib
  9. CC     = bcc
  10. o      = .obj
  11.  
  12. !include "Make.lst"
  13.  
  14. .c.obj:
  15.     $(CC) -c $(CFLAGS) $*.c
  16.     tlib /C $(LIB) +- $*.obj
  17.  
  18.  
  19. $(LIB): $(OBJECTS)
  20.  
  21.  
  22. _fix.obj: _fix.c
  23.     bcc -c -Qx -w- -mh  _fix.c
  24.     tlib /C $(LIB) +- _fix.obj
  25.  
  26.  
  27. del:
  28.     rm -f $(OBJECTS)
  29.  
  30.