home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / WKFRAME / GREP / GREP.MAK < prev    next >
Text File  |  1993-02-28  |  2KB  |  47 lines

  1. #*******************************************************************************
  2. #* SAMPLE PROJECT: GREP.MAK                                                    *
  3. #*                                                                             *
  4. #* COPYRIGHT:                                                                  *
  5. #* ----------                                                                  *
  6. #* Copyright (C) International Business Machines Corp., 1991,1992,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 run at 18:03:05 on 01/16/92
  21.  
  22. # Make File Creation run in directory:
  23. #   IBM C Set++ target_directory\WKFRAME\GREP;
  24.  
  25. .SUFFIXES:
  26.  
  27. .SUFFIXES: .c .cpp .cxx
  28.  
  29. GREP.EXE:  \
  30.   GREP.OBJ \
  31.   HELP.OBJ \
  32.   GREP.MAK
  33.    ICC.EXE @<<
  34.  /Fe"GREP.EXE" GREP.OBJ HELP.OBJ
  35. <<
  36.  
  37. {.}.c.obj:
  38.    ICC.EXE /C   .\$*.c
  39.  
  40. {.}.cpp.obj:
  41.    ICC.EXE /C   .\$*.cpp
  42.  
  43. {.}.cxx.obj:
  44.    ICC.EXE /C   .\$*.cxx
  45.  
  46. !include GREP.DEP
  47.