home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ascii11.zip / makefile < prev    next >
Makefile  |  1998-04-17  |  1KB  |  55 lines

  1. # makefile
  2. # Created by IBM WorkFrame/2 MakeMake at 3:36:58 on 17 April 1998
  3. #
  4. # The actions included in this make file are:
  5. #  Compile::C++ Compiler
  6. #  Link::Linker
  7. #  Bind::Resource Bind
  8. #  Compile::Resource Compiler
  9.  
  10. .SUFFIXES: .c .obj .rc .res 
  11.  
  12. .all: \
  13.     .\ascii.exe
  14.  
  15. .c.obj:
  16.     @echo " Compile::C++ Compiler "
  17.     icc.exe /Tdp /O /Gm /C %s
  18.  
  19. {c:\data\c\ascii}.c.obj:
  20.     @echo " Compile::C++ Compiler "
  21.     icc.exe /Tdp /O /Gm /C %s
  22.  
  23. .rc.res:
  24.     @echo " Compile::Resource Compiler "
  25.     rc.exe -r %s %|dpfF.RES
  26.  
  27. {c:\data\c\ascii}.rc.res:
  28.     @echo " Compile::Resource Compiler "
  29.     rc.exe -r %s %|dpfF.RES
  30.  
  31. .\ascii.exe: \
  32.     .\ascii.obj \
  33.     .\ascii.res \
  34.     {$(LIB)}os2386.lib \
  35.     {$(LIB)}cppom30.lib \
  36.     {$(LIB)}ascii.def
  37.     @echo " Link::Linker "
  38.     @echo " Bind::Resource Bind "
  39.     icc.exe @<<
  40.      /Feascii.exe 
  41.      os2386.lib 
  42.      cppom30.lib 
  43.      ascii.def
  44.      .\ascii.obj
  45. <<
  46.     rc.exe .\ascii.res ascii.exe
  47.  
  48. .\ascii.obj: \
  49.     c:\data\c\ascii\ascii.c \
  50.     {c:\data\c\ascii;$(INCLUDE);}ascii.h
  51.  
  52. .\ascii.res: \
  53.     c:\data\c\ascii\ascii.rc \
  54.     {c:\data\c\ascii;$(INCLUDE)}ascii.h
  55.