home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 9.ddi / PAINT.ZIP / MAKEFILE < prev    next >
Encoding:
Text File  |  1992-06-10  |  714 b   |  36 lines

  1. #
  2. # ObjectWindows - (C) Copyright 1992 by Borland International
  3. #
  4.  
  5. !if !$d(BCROOT)
  6. !include "..\bcroot.inc"
  7. !endif
  8.  
  9. !include "..\makefile.inc"
  10.  
  11. paint.exe: turboc.cfg paint.obj paint.res
  12.      $(TLINK) $(LFLAGS) $(BCLIBDIR)\c0w$(MODEL) paint,@&&!
  13. paint
  14.  
  15. $(OWLLIBS) $(STDLIBS)
  16. !,$(OWLROOT)\lib\owl.def
  17.      $(RC) -30 -K paint.res paint.exe
  18.  
  19. paint.res : paint.rc ellipse.cur fill.cur fellipse.cur frect.cur \
  20.     pen.cur rect.cur ellipse.ico fill.ico fellipse.ico frect.ico \
  21.     pen.ico rect.ico owlpaint.ico
  22.  
  23. turboc.cfg: makefile ..\makefile.inc
  24.     echo -I$(INCLUDE) >turboc.cfg
  25.  
  26. clean:
  27.     del *.obj
  28.     del *.exe
  29.     del *.res
  30.     del *.dll
  31.     del *.lib
  32.     del *.map
  33.     del *.sym
  34.         del turboc.cfg
  35.  
  36.