home *** CD-ROM | disk | FTP | other *** search
- #*******************************************************************************
- #* SAMPLE PROGRAM 05: MAKE05D *
- #* *
- #* COPYRIGHT: *
- #* ---------- *
- #* Copyright (C) International Business Machines Corp., 1991,1993. *
- #* *
- #* DISCLAIMER OF WARRANTIES: *
- #* ------------------------- *
- #* The following [enclosed] code is sample code created by IBM *
- #* Corporation. This sample code is not part of any standard 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. *
- #* *
- #*******************************************************************************
-
- .SUFFIXES: .c .dll .exe
-
- SAMPLE05.DLL: SAMPLE05.C SAMPLE05.H
- ICC.EXE /O+ /Rn /Ge- /Gd+ /B"/NOE" .\sample05.c sample05.def
- COPY SAMPLE05.DLL ..\..\..\DLL > NUL:
-
- MAIN05.EXE: MAIN05.C SAMPLE05.H
- ICC.EXE /O+ /Gd+ /B"/BASE:0x10000" .\main05.c main05.def
-
- all: sample05.dll main05.exe
-
- clean:
- -Del SAMPLE05.obj MAIN05.obj
- -Del SAMPLE05.dll MAIN05.exe
- -Del ..\..\..\DLL\SAMPLE05.dll