home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 26 / CD_ASCQ_26_1295.iso / vrac / giftool2.zip / SOURCE.ZIP / MAKEFILE.OS2 < prev    next >
Text File  |  1995-09-28  |  1KB  |  54 lines

  1. # Created by IBM WorkFrame/2 MakeMake at 22:49:34 on 09/28/95
  2. #
  3. # This makefile should be run in the following directory:
  4. #   f:\c_dev\giftool
  5. #
  6. # The actions included in this makefile are:
  7. #   COMPILE::C Set ++ Compile
  8. #   LINK::Link
  9.  
  10. .all: \
  11.   .\giftool.exe
  12.  
  13. .SUFFIXES:
  14.  
  15. .SUFFIXES: .c
  16.  
  17. .c.obj:
  18.       @echo WF::COMPILE::C Set ++ Compile
  19.       icc.exe /Tl- /O /G4 /Gs /Gi /Oi /C %s
  20.  
  21. .\giftool.exe: \
  22.     .\readGIF.obj \
  23.     .\main.obj \
  24.     .\writeGIF.obj \
  25.     {$(LIB)}giftool.def \
  26.     makefile.os2
  27.       @echo WF::LINK::Link
  28.       link386.exe @<<
  29.          /PM:VIO /F /PACKD: /E +
  30.         .\readGIF.obj +
  31.         .\main.obj +
  32.         .\writeGIF.obj
  33.         giftool.exe
  34.         
  35.         
  36.         giftool.def;
  37. <<
  38.  
  39. .\readGIF.obj: \
  40.     f:\c_dev\giftool\readGIF.c \
  41.     {f:\c_dev\giftool;$(INCLUDE);}gif.h \
  42.     makefile.os2
  43.  
  44. .\main.obj: \
  45.     f:\c_dev\giftool\main.c \
  46.     {f:\c_dev\giftool;$(INCLUDE);}gif.h \
  47.     makefile.os2
  48.  
  49. .\writeGIF.obj: \
  50.     f:\c_dev\giftool\writeGIF.c \
  51.     {f:\c_dev\giftool;$(INCLUDE);}gif.h \
  52.     makefile.os2
  53.  
  54.