home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / VISBUILD / DOODLE / DAREA / DAREA.MAK < prev    next >
Text File  |  1995-05-10  |  2KB  |  51 lines

  1. #*******************************************************************************
  2. #* SAMPLE PROJECT: Doodle Graphics Sample program Makefile for OS/2            *
  3. #*                                                                             *
  4. #* COPYRIGHT:                                                                  *
  5. #* ----------                                                                  *
  6. #* Copyright (C) International Business Machines Corp., 1995                   *
  7. #*                                                                             *
  8. #* DISCLAIMER OF WARRANTIES:                                                   *
  9. #* -------------------------                                                   *
  10. #* The following [enclosed] code is sample code   created   by IBM             *
  11. #* Corporation.    This sample code is not part of any standard IBM product    *
  12. #* and is provided to you solely for the purpose of assisting you in the       *
  13. #* development of your applications.  The code is provided "AS IS",            *
  14. #* without warranty of any kind.  IBM shall not be liable for any damages      *
  15. #* arising out of your use of the sample code, even if they have been          *
  16. #* advised of the possibility of such damages.                                 *
  17. #*                                                                             *
  18. #*******************************************************************************
  19.  
  20. # Make file assumptions:
  21. #    - Environment variable INCLUDE contains paths to:
  22. #       VisualAge C++ target_directory\include;VisualAge C++ target_directory\ibmclass;
  23. #       OS/2 Developer's Toolkit target_directory include paths
  24. #    - Environment variable LIB contains paths to:
  25. #       VisualAge C++ target_directory\lib;
  26. #       OS/2 Developer's Toolkit target_directory lib paths
  27. #    - Current directory contains source files.  Originals are in:
  28. #       VisualAge C++ target_directory\samples\iclui\2d-draw
  29. #    - current directory will be used to store:
  30. #       object, executable, and resource files
  31.  
  32. ERASE=ERASE
  33. GCPPC=ICC.EXE
  34. GLINK=ICC.EXE
  35.  
  36. # ICLCPPOPTS=/GM /GD /DIC_TRACE_ALL /DIC_DEVELOP /Ti+ /O-
  37. ICLCPPOPTS=/GM /GD /Ti+ /O-
  38.  
  39. GCPPFLAGS=$(LOCALOPTS) $(ICLCPPOPTS)
  40.  
  41. GCPPLFLAGS=/B" /pmtype:pm /DE"
  42.  
  43. all: darea.lib
  44.  
  45. darea.lib: darea.obj
  46.         ilib darea -+darea , , darea
  47.  
  48. darea.OBJ:  darea.CPP darea.HPP darea.H
  49.         $(GCPPC) /C $(GCPPFLAGS) darea.CPP
  50.  
  51.