home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pascal.zip / pcode / makefile.mak next >
Makefile  |  1995-10-29  |  582b  |  29 lines

  1. # Created by IBM WorkFrame/2 MakeMake at 14:15:57 on 10/29/95
  2. #
  3. # This makefile should be run in the following directory:
  4. #   f:\c_dev\bill\pcode
  5. #
  6. # The actions included in this makefile are:
  7. #   COMPILE::C Set ++ Compile
  8.  
  9. .all: \
  10.   .\pcode.obj
  11.  
  12. .SUFFIXES:
  13.  
  14. .SUFFIXES: .c
  15.  
  16. .c.obj:
  17.       @echo WF::COMPILE::C Set ++ Compile
  18.       icc.exe /Tl- /Ss /Ti /G4 /C %s
  19.  
  20. .\pcode.obj: \
  21.     f:\c_dev\bill\pcode\pcode.c \
  22.     ..\pcode\pcode.hi \
  23.     ..\pcode\pcode.h \
  24.     ..\global\global.h \
  25.     ..\global\error.h \
  26.     ..\exitcode\exitcode.h \
  27.     makefile.mak
  28.  
  29.