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

  1. #*******************************************************************************
  2. #* SAMPLE PROJECT: MAKE1AS                                                     *
  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. #   IBM C Set/2 target_directory\WKFRAME\PMLINES;
  24.  
  25. .SUFFIXES:
  26.  
  27. .SUFFIXES: .c .rc
  28.  
  29. ALL: PMLINES.EXE \
  30.      SAMPLE1A.RES
  31.  
  32. PMLINES.EXE:  \
  33.   PMLINES.OBJ \
  34.   SAMPLE1A.RES \
  35.   MAKE1AS
  36.    @REM @<<PMLINES.@0
  37.      /A:16 /EXEPACK /NOI /PM:PM +
  38.      PMLINES.OBJ
  39.      PMLINES.EXE
  40.  
  41.  
  42.      ;
  43. <<
  44.    LINK386.EXE @PMLINES.@0
  45.    RC SAMPLE1A.RES PMLINES.EXE
  46.  
  47. clean:
  48.          -Del  PMLINES.exe PMLINES.obj SAMPLE1A.res
  49.  
  50. {.}.rc.res:
  51.    RC -r .\$*.RC
  52.  
  53. {.}.c.obj:
  54.    ICC.EXE /Rn /O+ /C /Gd- .\$*.c
  55.  
  56. !include MAKE1AS.DEP
  57.