home *** CD-ROM | disk | FTP | other *** search
/ The Developer Connection…ice Driver Kit for OS/2 3 / DEV3-D1.ISO / devtools / gik2 / ewyio2eu.d2x / EWYEA.MAK < prev    next >
Encoding:
Text File  |  1993-08-04  |  3.2 KB  |  90 lines

  1. # GIK/2 1.0.1 EWYEA.MAK 5621-432 (C) COPYRIGHT IBM CORP 1991, 1993.  ALL RIGHTS RESERVED.  LICENSED MATERIALS - PROPERTY OF IBM.
  2. #/**********************************************************************/
  3. #/*                                                                    */
  4. #/*                         MODULE PROLOGUE                            */
  5. #/*                                                                    */
  6. #/* COMPONENT NAME:   Data Flow Diagram (DFD) Example                  */
  7. #/*                                                                    */
  8. #/* MODULE NAME:      EWYEA.MAK                                        */
  9. #/*                                                                    */
  10. #/* DESCRIPTIVE NAME: Make file for customizing code                   */
  11. #/*                                                                    */
  12. #/* PURPOSE:          Make file                                        */
  13. #/*                                                                    */
  14. #/* COPYRIGHT:        (C) 1991, 1993 IBM Corporation                   */
  15. #/*                                                                    */
  16. #/* DISCLAIMER OF WARRANTIES.  The following [enclosed] code is        */
  17. #/* sample code created by IBM Corporation. This sample code is not    */
  18. #/* part of any standard or IBM product and is provided to you solely  */
  19. #/* for the purpose of assisting you in the development of your        */
  20. #/* applications.  The code is provided "AS IS", without               */
  21. #/* warranty of any kind.  IBM shall not be liable for any damages     */
  22. #/* arising out of your use of the sample code, even if they have been */
  23. #/* advised of the possibility of such damages.                        */
  24. #/**********************************************************************/
  25.  
  26.  
  27. CL = icc
  28.  
  29. !if "$(MAKEMODE)"=="O"
  30.  
  31. # Options set for no-debugging support:
  32.  
  33. CLFLAGS = /C /Se /Sn+ /Ss /W3 /G3 /Gs- /Gd- /Ge- /O- /Q+ /Kb+ /Kr+ /Ti-
  34. LIFLAGS = /A:16
  35.  
  36. !else
  37.  
  38. # Options set for debugging support:
  39.  
  40. CLFLAGS = /C /Se /Sn+ /Ss /W3 /G3 /Gs- /Gd- /Ge- /O- /Q+ /Kb+ /Kr+ /Ti+
  41. LIFLAGS = /A:16 /DE
  42.  
  43. !endif
  44.  
  45. ALL: ewyea.dll ewyeanls.dll ewyea.hlp
  46.  
  47.  
  48. EWYEA.DLL: ewyeaah.OBJ ewyeaeh.OBJ ewyea.def
  49.    link386 ewyeaah.OBJ ewyeaeh.OBJ, \
  50.         EWYEA.DLL, \
  51.         nul.map $(LIFLAGS), \
  52.         os2386+ewyga.lib, \
  53.         ewyea.def;
  54.  
  55. ewyeaah.OBJ: ewyeaah.c ewyeadf.h ewyea.mak
  56.    $(CL) $(CLFLAGS) ewyeaah.c
  57.  
  58. ewyeaeh.OBJ: ewyeaeh.c ewyeadf.h ewyea.mak
  59.    $(CL) $(CLFLAGS) ewyeaeh.c
  60.  
  61.  
  62. #
  63. # Instructions to build the country dependent DLL
  64. #
  65. ewyeanls.dll: ewyebstb.obj ewyean.def ewyebn.res
  66.   $(CONLOG)
  67.   link386 ewyebstb.obj,          \
  68.        ewyeanls.dll,          \
  69.        nul.map ,          \
  70.        ,                      \
  71.        ewyean.def;
  72.   rc ewyebn.res ewyeanls.dll
  73.  
  74. ewyebstb.obj: ewyeastb.c
  75.   $(CONLOG)
  76.   icc /C /Se /ss /W3 /G3 /Foewyebstb.obj ewyeastb.c
  77.  
  78. ewyebn.res: ewyean.rc ewyearc.h ewyea.h
  79.   $(CONLOG)
  80.   rc -r ewyean.rc ewyebn.res
  81.  
  82. # ------------------------------------------------
  83. # help library
  84. # ------------------------------------------------
  85.  
  86. EWYEA.HLP: EWYEA.IPF
  87.   $(CONLOG)
  88.   IPFC EWYEA.IPF
  89.  
  90.