home *** CD-ROM | disk | FTP | other *** search
- #*******************************************************************************
- #* SAMPLE PROJECT: MAKE1AD *
- #* *
- #* 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. *
- #* *
- #*******************************************************************************
-
- # IBM Developer's Workframe/2 Make File Creation
-
- # Make File Creation run in directory:
- # IBM C Set/2 target_directory\WKFRAME\PMLINES;
-
- .SUFFIXES:
-
- .SUFFIXES: .c .rc
-
- ALL: PMLINES.EXE \
- SAMPLE1A.RES
-
- PMLINES.EXE: \
- PMLINES.OBJ \
- SAMPLE1A.RES \
- MAKE1AD
- @REM @<<PMLINES.@0
- /A:16 /EXEPACK /NOI /PM:PM +
- PMLINES.OBJ
- PMLINES.EXE
-
-
- ;
- <<
- LINK386.EXE @PMLINES.@0
- RC SAMPLE1A.RES PMLINES.EXE
-
- clean :
- -Del PMLINES.exe PMLINES.obj SAMPLE1A.res
-
- {.}.rc.res:
- RC -r .\$*.RC
-
- {.}.c.obj:
- ICC.EXE /Rn /O+ /C /Gd+ .\$*.c
-
- !include MAKE1AD.DEP