home *** CD-ROM | disk | FTP | other *** search
- # GIK/2 1.0.1 EWYEA.MAK 5621-432 (C) COPYRIGHT IBM CORP 1991, 1993. ALL RIGHTS RESERVED. LICENSED MATERIALS - PROPERTY OF IBM.
- #/**********************************************************************/
- #/* */
- #/* MODULE PROLOGUE */
- #/* */
- #/* COMPONENT NAME: Data Flow Diagram (DFD) Example */
- #/* */
- #/* MODULE NAME: EWYEA.MAK */
- #/* */
- #/* DESCRIPTIVE NAME: Make file for customizing code */
- #/* */
- #/* PURPOSE: Make file */
- #/* */
- #/* COPYRIGHT: (C) 1991, 1993 IBM Corporation */
- #/* */
- #/* DISCLAIMER OF WARRANTIES. The following [enclosed] code is */
- #/* sample code created by IBM Corporation. This sample code is not */
- #/* part of any standard or IBM product and is provided to you solely */
- #/* for the purpose of assisting you in the development of your */
- #/* applications. The code is provided "AS IS", without */
- #/* warranty of any kind. IBM shall not be liable for any damages */
- #/* arising out of your use of the sample code, even if they have been */
- #/* advised of the possibility of such damages. */
- #/**********************************************************************/
-
-
- CL = icc
-
- !if "$(MAKEMODE)"=="O"
-
- # Options set for no-debugging support:
-
- CLFLAGS = /C /Se /Sn+ /Ss /W3 /G3 /Gs- /Gd- /Ge- /O- /Q+ /Kb+ /Kr+ /Ti-
- LIFLAGS = /A:16
-
- !else
-
- # Options set for debugging support:
-
- CLFLAGS = /C /Se /Sn+ /Ss /W3 /G3 /Gs- /Gd- /Ge- /O- /Q+ /Kb+ /Kr+ /Ti+
- LIFLAGS = /A:16 /DE
-
- !endif
-
- ALL: ewyea.dll ewyeanls.dll ewyea.hlp
-
-
- EWYEA.DLL: ewyeaah.OBJ ewyeaeh.OBJ ewyea.def
- link386 ewyeaah.OBJ ewyeaeh.OBJ, \
- EWYEA.DLL, \
- nul.map $(LIFLAGS), \
- os2386+ewyga.lib, \
- ewyea.def;
-
- ewyeaah.OBJ: ewyeaah.c ewyeadf.h ewyea.mak
- $(CL) $(CLFLAGS) ewyeaah.c
-
- ewyeaeh.OBJ: ewyeaeh.c ewyeadf.h ewyea.mak
- $(CL) $(CLFLAGS) ewyeaeh.c
-
-
- #
- # Instructions to build the country dependent DLL
- #
- ewyeanls.dll: ewyebstb.obj ewyean.def ewyebn.res
- $(CONLOG)
- link386 ewyebstb.obj, \
- ewyeanls.dll, \
- nul.map , \
- , \
- ewyean.def;
- rc ewyebn.res ewyeanls.dll
-
- ewyebstb.obj: ewyeastb.c
- $(CONLOG)
- icc /C /Se /ss /W3 /G3 /Foewyebstb.obj ewyeastb.c
-
- ewyebn.res: ewyean.rc ewyearc.h ewyea.h
- $(CONLOG)
- rc -r ewyean.rc ewyebn.res
-
- # ------------------------------------------------
- # help library
- # ------------------------------------------------
-
- EWYEA.HLP: EWYEA.IPF
- $(CONLOG)
- IPFC EWYEA.IPF
-