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

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