home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ICLUI.ZIP / HELLO3 / AMAKE3.MAK < prev    next >
Text File  |  1993-03-09  |  1KB  |  37 lines

  1. # HELLO WORLD SAMPLE PROGRAM - Version 3: Makefile (AMAKE3.MAK)
  2. #
  3. # COPYRIGHT: Copyright (C) International Business Machines Corp., 1992,1993.
  4. #
  5. #       Define variables for makefile
  6. #
  7. GCPPC=icc
  8. GLINK=link386
  9. GCPPFLAGS=-Fd -c
  10. GLFLAGS=/PM:PM
  11.  
  12. all:           hello3
  13.  
  14. hello3:        hello3.exe
  15. #
  16. #       Statements to link exe file
  17. #
  18. hello3.exe:    ahellow3.obj ahellow3.def ahellow3.res
  19.                icc /Tdp /B"/DE /PM:PM /MAP" \
  20.                ahellow3.obj  \
  21.                /Fehello3.exe /Fmahellow3.map \
  22.                ibase.lib ibasectl.lib ibaseapp.lib iclcc.lib ahellow3.def
  23. #
  24. #       Statements to add resources to exe file                               v2
  25. #
  26.                rc ahellow3.res hello3.exe
  27. #
  28. #       Statements to compile AHelloWindow Class
  29. #
  30. ahellow3.obj:  ahellow3.cpp ahellow3.hpp ahellow3.h
  31.                icc $(GCPPFLAGS) ahellow3.cpp
  32. #
  33. #       Statements to compile resources for AHelloWindow Class                v2
  34. #
  35. ahellow3.res:  ahellow3.rc ahellow3.h ahellow3.ico
  36.                rc -r ahellow3.rc
  37.