home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / IOC / MMSTEREO / MAKEFILE < prev    next >
Text File  |  1995-05-15  |  2KB  |  61 lines

  1. #*******************************************************************************
  2. #* SAMPLE PROJECT: MMStereo Sample Program Makefile for OS/2                   *
  3. #*                                                                             *
  4. #* COPYRIGHT:                                                                  *
  5. #* ----------                                                                  *
  6. #* Copyright (C) International Business Machines Corp., 1992,1995.             *
  7. #*                                                                             *
  8. #* DISCLAIMER OF WARRANTIES:                                                   *
  9. #* -------------------------                                                   *
  10. #* The following [enclosed] code is sample code created by IBM                 *
  11. #* Corporation.  This sample code is not part of any standard IBM product      *
  12. #* and is provided to you solely for the purpose of assisting you in the       *
  13. #* development of your applications.  The code is provided "AS IS",            *
  14. #* without warranty of any kind.  IBM shall not be liable for any damages      *
  15. #* arising out of your use of the sample code, even if they have been          *
  16. #* advised of the possibility of such damages.                                 *
  17. #*                                                                             *
  18. #*******************************************************************************
  19.  
  20. ERASE=ERASE
  21. .SUFFIXES:
  22. .SUFFIXES: .c .cpp .rc
  23.  
  24. ALL: MMSTEREO.EXE \
  25.      MMSTEREO.RES
  26.  
  27. MMSTEREO.EXE:   \
  28.   MMSTEREO.H        \
  29.   MMSTEREO.HPP      \
  30.   MMSTEREO.OBJ      \
  31.   MLTAMP.HPP        \
  32.   MLTCD.HPP        \
  33.   MLTWAVE.HPP        \
  34.   MLTVID.HPP        \
  35.   MLTAMP.OBJ        \
  36.   MLTCD.OBJ        \
  37.   MLTWAVE.OBJ        \
  38.   MLTVID.OBJ        \
  39.   MMSTEREO.RES
  40.    ICC.EXE @<<
  41.   /Tdp  /B" /pmtype:pm /STACK:32768"
  42.   /Fe"MMSTEREO.EXE"
  43.   MMSTEREO.OBJ MLTAMP.OBJ MLTVID.OBJ MLTCD.OBJ mltwave.obj
  44. <<
  45.    RC MMSTEREO.res MMSTEREO.exe
  46.  
  47. {.}.rc.res:
  48.    RC -r -DIC_PM .\$*.RC
  49.  
  50. {.}.cpp.obj:
  51.    ICC.EXE  /Tdp /Gm /Gd /C  .\$*.cpp
  52.  
  53. clean:
  54.    $(ERASE) mmstereo.obj
  55.    $(ERASE) mltamp.obj
  56.    $(ERASE) mltcd.obj
  57.    $(ERASE) mltvid.obj
  58.    $(ERASE) mltwave.obj
  59.    $(ERASE) mmstereo.res
  60.    $(ERASE) mmstereo.exe
  61.