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

  1. #*******************************************************************************
  2. #* SAMPLE PROJECT: MMRemote 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: MMREMOTE.EXE \
  25.      MMREMOTE.RES
  26.  
  27. MMREMOTE.EXE:   \
  28.   MMREMOTE.H        \
  29.   MMREMOTE.HPP      \
  30.   MMREMOTE.OBJ      \
  31.   MMREMOTE.RES
  32.    ICC.EXE @<<
  33.  /Tdp  /B" /pmtype:pm /STACK:32768 /DEBUG"
  34.  /Fe"MMREMOTE.EXE"
  35. MMREMOTE.OBJ
  36. <<
  37.    RC MMREMOTE.res MMREMOTE.exe
  38.  
  39. {.}.rc.res:
  40.    RC -r -DIC_PM .\$*.RC
  41.  
  42. {.}.cpp.obj:
  43.    ICC.EXE /Ti /Tdp /Gm /Gd /C .\$*.cpp
  44.  
  45. clean:
  46.    $(ERASE) mmremote.obj
  47.    $(ERASE) mmremote.res
  48.    $(ERASE) mmremote.exe
  49.