home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / SAMPLES / COMPILER / SAMPLE02 / MAKE02D next >
Text File  |  1993-03-15  |  2KB  |  46 lines

  1. #*******************************************************************************
  2. #* SAMPLE PROJECT: MAKE02D                                                     *
  3. #*                                                                             *
  4. #* COPYRIGHT:                                                                  *
  5. #* ----------                                                                  *
  6. #* Copyright (C) International Business Machines Corp., 1991,1993.             *
  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. # IBM Developer's Workframe/2 Make File Creation
  21.  
  22. # Make File Creation run in directory:
  23. #   E:\IBMCPP\SAMPLES\SAMPLE02;
  24.  
  25. .SUFFIXES: .c .cpp
  26.  
  27. CCFLAGS= /C /Gd+ /Ge /Gm+ /Re /Se
  28. LKFLAGS= /NOE /NOD /NOI
  29.  
  30. all: SAMPLE02.exe
  31.  
  32. SAMPLE02.OBJ:  SAMPLE02.C MAKE02D
  33.    ICC.EXE $(CCFLAGS) .\sample02.c
  34.  
  35. SAMPLE02.EXE:  \
  36.   SAMPLE02.OBJ \
  37.   MAKE02D
  38.    ICC.EXE @<<
  39.  /B"$(LKFLAGS)"
  40.  /Fe"SAMPLE02.EXE"
  41. SAMPLE02.OBJ DDE4MBSI.LIB OS2386.LIB SAMPLE02.def
  42. <<
  43.  
  44. clean:
  45.          -Del  SAMPLE02.obj SAMPLE02.exe
  46.