home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / TOOLKIT / PM / STDWND / HELLO.MAK < prev    next >
Text File  |  1995-03-22  |  2KB  |  50 lines

  1. #===================================================================
  2. #
  3. #   Hello Make file
  4. #
  5. #  Copyright (C) 1991, 1994 IBM Corporation
  6. #
  7. #      DISCLAIMER OF WARRANTIES.  The following [enclosed] code is
  8. #      sample code created by IBM Corporation. This sample code is not
  9. #      part of any standard or IBM product and is provided to you solely
  10. #      for  the purpose of assisting you in the development of your
  11. #      applications.  The code is provided "AS IS", without
  12. #      warranty of any kind.  IBM shall not be liable for any damages
  13. #      arising out of your use of the sample code, even if they have been
  14. #      advised of the possibility of such damages.
  15. #
  16. #===================================================================
  17.  
  18. include ..\..\ibmsamp.inc
  19.  
  20. CC         = icc /Ti /c /Ge /Gd- /Se /Re /ss /Gm+
  21.  
  22. HEADERS = hello.h
  23.  
  24. #-------------------------------------------------------------------
  25. #   A list of all of the object files
  26. #-------------------------------------------------------------------
  27. ALL_OBJ1 = hello.obj
  28.  
  29.  
  30. all: hello.exe
  31.  
  32.  
  33. hello.l: hello.mak
  34.     echo $(ALL_OBJ1)            > hello.l
  35.     echo hello.exe           >> hello.l
  36.     echo hello.map           >> hello.l
  37.     echo $(LIBS)                >> hello.l
  38.     echo hello.def           >> hello.l
  39.  
  40.  
  41.  
  42.  
  43. hello.res: hello.rc hello.ico hello.h
  44.  
  45. hello.obj: hello.c $(HEADERS)
  46.  
  47. hello.exe: $(ALL_OBJ1)  hello.def hello.l hello.res
  48.     $(LINK) @hello.l
  49.     rc -p -x hello.res hello.exe
  50.