home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pascal.zip / lexical / makefile.mak < prev   
Makefile  |  1995-10-29  |  688b  |  32 lines

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