home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-02-19 | 2.5 KB | 53 lines |
- #*******************************************************************************
- #* SAMPLE PROJECT: Doodle Graphics Makefile - builds the DLL and Import LIB *
- #* for the nonvisual part *
- #* *
- #* COPYRIGHT: *
- #* ---------- *
- #* Copyright (C) International Business Machines Corp., 1992,1996. *
- #* *
- #* 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. *
- #* *
- #*******************************************************************************
- # Make file assumptions:
- # - Environment variable INCLUDE contains paths to:
- # VisualAge C++ target_directory\include;VisualAge C++ target_directory\ibmclass;
- # OS/2 Developer's Toolkit target_directory include paths
- # - Environment variable LIB contains paths to:
- # VisualAge C++ target_directory\lib;
- # OS/2 Developer's Toolkit target_directory lib paths
- # - Current directory contains source files. Originals are in:
- # VisualAge C++ target_directory\samples\iclui\2d-draw
- # - current directory will be used to store:
- # object, executable, and resource files
-
- ERASE=ERASE
- GCPPC=ICC.EXE
- GLINK=ICC.EXE
-
- ICLCPPOPTS=/GM /Ge- /GD /Ti+ /O-
-
- GCPPFLAGS=$(LOCALOPTS) $(ICLCPPOPTS)
-
- PARTCPPFLAGS=-Ftdarea -Gm+ -Ge+ -Gd+ -I. -Ti+ -DINO_CHECKS -DIC_WIN -DIC_TRACE_DEVELOP
-
-
-
- all: darea.lib
-
- darea.lib: darea.obj
- # ilib /q +darea.obj darea.lib
- ilib /out:darea.lib darea.obj
-
- darea.OBJ: darea.CPP darea.HPP darea.H
- $(GCPPC) /C $(PARTCPPFLAGS) darea.CPP
-