home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 6.ddi / CALC.ZIP / MAKEFILE < prev   
Encoding:
Text File  |  1992-06-10  |  539 b   |  30 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. calc.exe: turboc.cfg calc.obj calc.res
  12.      $(TLINK)  $(LFLAGS) $(BCLIBDIR)\c0w$(MODEL) calc,calc,,@&&!
  13. $(OWLLIBS) $(STDLIBS)
  14. !,$(OWLROOT)\lib\owl.def
  15.      $(RC) -30 -K calc.res calc.exe
  16.  
  17. turboc.cfg: makefile ..\makefile.inc
  18.     echo -I$(INCLUDE) >turboc.cfg
  19.  
  20. clean:
  21.     del *.obj
  22.     del *.exe
  23.     del *.res
  24.     del *.dll
  25.     del *.lib
  26.     del *.map
  27.     del *.sym
  28.         del turboc.cfg
  29.  
  30.