home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 10.ddi / OWLHELP.ZIP / MAKEFILE next >
Encoding:
Text File  |  1992-06-10  |  749 b   |  40 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 "..\..\examples\makefile.inc"
  10.  
  11. HC = hc31
  12.  
  13. all: owlhelp.exe owlhelp.hlp
  14.  
  15. owlhelp.exe: turboc.cfg owlhelp.obj owlhelp.res
  16.      $(TLINK) $(LFLAGS) $(BCLIBDIR)\c0w$(MODEL) owlhelp,owlhelp,,@&&!
  17. $(OWLLIBS) $(STDLIBS)
  18. !,$(OWLROOT)\lib\owl.def
  19.      $(RC) -31 -K owlhelp.res owlhelp.exe
  20.  
  21. owlhelp.res: owlhelp.rc owlhelpr.h
  22.  
  23. owlhelp.hlp: owlhelp.hpj owlhelp.rtf
  24.      $(HC) owlhelp.hpj
  25.  
  26. turboc.cfg: makefile ..\..\examples\makefile.inc
  27.     echo -I$(INCLUDE) >turboc.cfg
  28.  
  29. clean:
  30.     del *.obj
  31.     del *.exe
  32.     del *.res
  33.     del *.dll
  34.     del *.lib
  35.     del *.map
  36.     del *.sym
  37.         del *.dsk
  38.         del turboc.cfg
  39.  
  40.