home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pascal.zip / bill / makefile.mak < prev   
Makefile  |  1995-10-29  |  1KB  |  50 lines

  1. # Created by IBM WorkFrame/2 MakeMake at 14:18:55 on 10/29/95
  2. #
  3. # This makefile should be run in the following directory:
  4. #   f:\c_dev\bill\bill
  5. #
  6. # The actions included in this makefile are:
  7. #   COMPILE::C Set ++ Compile
  8. #   LINK::Link
  9.  
  10. .all: \
  11.   .\bill.exe
  12.  
  13. .SUFFIXES:
  14.  
  15. .SUFFIXES: .c
  16.  
  17. .c.obj:
  18.       @echo WF::COMPILE::C Set ++ Compile
  19.       icc.exe /Tl- /Ss /Ti /G4 /C %s
  20.  
  21. .\bill.exe: \
  22.     .\bill.obj \
  23.     {$(LIB)}bill.def \
  24.     makefile.mak
  25.       @echo WF::LINK::Link
  26.       link386.exe @<<
  27.          /PM:VIO /F /NON /PACKD: /E +
  28.         .\bill.obj +
  29.         ..\exitcode\exitcode.obj +
  30.         ..\lexical\lexical.obj +
  31.         ..\parser\parser.obj +
  32.         ..\pcode\pcode.obj +
  33.         ..\stackman\stackman.obj +
  34.         ..\symtable\symtable.obj
  35.         bill.exe
  36.         
  37.         
  38.         bill.def;
  39. <<
  40.  
  41. .\bill.obj: \
  42.     f:\c_dev\bill\bill\bill.c \
  43.     ..\parser\parser.h \
  44.     ..\stackman\stackman.h \
  45.     ..\global\global.h \
  46.     ..\global\error.h \
  47.     ..\exitcode\exitcode.h \
  48.     makefile.mak
  49.  
  50.