home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cpptba.zip / AMAKE.MAK < prev    next >
Makefile  |  1993-11-29  |  797b  |  34 lines

  1. # Toolbar in IBM User Interface Class Libraries
  2. #
  3. # Written by Stewart Hyde
  4. # CIS    71034,3702
  5. # Genie  S.HYDE
  6. #
  7. GCPPFLAGS=-Fd -c -Gm+ -O+ -Gx+
  8.  
  9. all:           toolbar
  10.  
  11. toolbar:       toolbar.exe
  12. #
  13. #       Statements to link the EXE file
  14. #
  15. toolbar.exe:   toolbar.obj toolbar.def toolbar.res
  16.                icc /B" /PM:PM" \
  17.                toolbar.obj  \
  18.                dde4muii.lib dde4cci.lib dde4mbsi.lib toolbar.def
  19. #
  20. #       Statements to add resources to the EXE file
  21. #
  22.                rc toolbar.res toolbar.exe
  23. #
  24. #       Statements to compile the Toolbar class
  25. #
  26. toolbar.obj:  toolbar.cpp
  27.                icc $(GCPPFLAGS) toolbar.cpp
  28. #
  29. #       Statements to compile resources for the Toolbar class
  30. #
  31. toolbar.res:  toolbar.rc
  32.                rc -r toolbar.rc
  33.  
  34.