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

  1. # HELLO WORLD SAMPLE PROGRAM - Version 5: Makefile (AMAKE5.MAK)
  2. #
  3. # COPYRIGHT: Copyright (C) International Business Machines Corp., 1992,1993.
  4. #
  5. #       Define variables for makefile
  6. #
  7. GCPPFLAGS=-Fd -c
  8.  
  9. all:           hello5
  10.  
  11. hello5:        hello5.exe ahellow5.hlp
  12. #
  13. #       Statements to link exe file
  14. #
  15. hello5.exe:    ahellow5.obj adialog5.obj aearthw5.obj ahellow5.def ahellow5.res
  16.                icc /Tdp /B"/DE /PM:PM /MAP" \
  17.                ahellow5.obj adialog5.obj aearthw5.obj  \
  18.                /Fehello5.exe /Fmahellow5.map \
  19.                ibase.lib ibasectl.lib ibaseapp.lib iclcc.lib ahellow5.def
  20. #
  21. #       Statements to add resources to exe file                               v2
  22. #
  23.                rc ahellow5.res hello5.exe
  24. #
  25. #       Statements to compile AHelloWindow Class
  26. #
  27. ahellow5.obj:  ahellow5.cpp ahellow5.hpp ahellow5.h adialog5.hpp aearthw5.hpp
  28.                icc $(GCPPFLAGS) ahellow5.cpp
  29. #
  30. #       Statements to compile ADialogWindow Class                             v4
  31. #
  32. adialog5.obj:  adialog5.cpp adialog5.hpp ahellow5.h
  33.                icc $(GCPPFLAGS) adialog5.cpp
  34. #
  35. #       Statements to compile AEarthWindow Class                              v5
  36. #
  37. aearthw5.obj:  aearthw5.cpp aearthw5.hpp
  38.                icc $(GCPPFLAGS) aearthw5.cpp
  39. #
  40. #       Statements to compile resources for hello5.exe                        v2
  41. #
  42. ahellow5.res:  ahellow5.rc ahellow5.h ahellow5.ico adialog5.dlg
  43.                rc -r ahellow5.rc
  44. #
  45. #       Statements to create help resources for Hello5.exe                    v5
  46. #
  47. ahellow5.hlp:  ahellow5.ipf
  48.                ipfc ahellow5.ipf /x
  49.