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

  1. # Created by IBM WorkFrame/2 MakeMake at 14:15:36 on 10/29/95
  2. #
  3. # This makefile should be run in the following directory:
  4. #   f:\c_dev\bill\parser
  5. #
  6. # The actions included in this makefile are:
  7. #   COMPILE::C Set ++ Compile
  8.  
  9. .all: \
  10.   .\parser.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. .\parser.obj: \
  21.     f:\c_dev\bill\parser\parser.c \
  22.     ..\parser\parser.hi \
  23.     ..\parser\parser.h \
  24.     ..\parser\pars_ids.h \
  25.     ..\lexical\lexical.h \
  26.     ..\symtable\symtable.h \
  27.     ..\pcode\pcode_id.h \
  28.     ..\pcode\pcode.h \
  29.     ..\global\global.h \
  30.     ..\lexical\lex_ids.h \
  31.     ..\symtable\symt_ids.h \
  32.     ..\global\error.h \
  33.     ..\exitcode\exitcode.h \
  34.     makefile.mak
  35.  
  36.