home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ICLUI.ZIP / HELLO1 / AMAKE1.MAK < prev    next >
Text File  |  1993-03-09  |  694b  |  25 lines

  1. # HELLO WORLD SAMPLE PROGRAM - Version 1: Makefile (AMAKE1.MAK)
  2. #
  3. # COPYRIGHT: Copyright (C) International Business Machines Corp., 1992,1993.
  4. #
  5. #       Define variables for the makefile
  6. #
  7. GCPPFLAGS=-Fd -c
  8.  
  9. all:           hello1
  10.  
  11. hello1:        hello1.exe
  12. #
  13. #       Statements to link the EXE file
  14. #
  15. hello1.exe:    ahellow1.obj ahellow1.def
  16.                icc /Tdp /B"/DE /PM:PM /MAP" \
  17.                ahellow1.obj  \
  18.                /Fehello1.exe /Fmahellow1.map \
  19.                ibase.lib ibasectl.lib ibaseapp.lib iclcc.lib ahellow1.def
  20. #
  21. #       Statements to compile the hello1 application
  22. #
  23. ahellow1.obj:  ahellow1.cpp
  24.                icc $(GCPPFLAGS) ahellow1.cpp
  25.