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

  1. # GIK/2 1.0.1 EWYHA.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:   CLOCK EXAMPLE                                   */
  7. #/*                                                                   */
  8. #/* MODULE NAME:      EWYHA.H                                         */
  9. #/*                                                                   */
  10. #/* DESCRIPTIVE NAME: Graphics Interface Kit/2 - Clock Example        */
  11. #/*                                                                   */
  12. #/* PURPOSE:          Make file for the customizing code              */
  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. ewyha.DLL: EWYHA.OBJ EWYHAAH.OBJ EWYHAEH.OBJ EWYHA.DEF
  46.    link386 EWYHA.OBJ EWYHAAH.OBJ EWYHAEH.OBJ, \
  47.         ewyha.DLL, \
  48.         nul.map $(LIFLAGS), \
  49.         os2386+ewyga.lib, \
  50.         EWYHA.DEF;
  51.  
  52. EWYHA.OBJ: EWYHA.C EWYHADF.H EWYHA.MAK EWYHA.H
  53.    $(CL) $(CLFLAGS) EWYHA.C
  54.  
  55. EWYHAAH.OBJ: EWYHAAH.C EWYHADF.H EWYHA.MAK EWYHA.H
  56.    $(CL) $(CLFLAGS) EWYHAAH.C
  57.  
  58. EWYHAEH.OBJ: EWYHAEH.C EWYHADF.H EWYHA.MAK EWYHA.H
  59.    $(CL) $(CLFLAGS) EWYHAEH.C
  60.