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

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