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