home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / OP2DEV.ZIP / PREDI.MAK < prev    next >
Text File  |  1990-09-23  |  406b  |  21 lines

  1. #
  2. #  Makefile for PREDI.EXE
  3. #  stdout redirector for OP/2 BBS
  4. #  Copyright (c) 1990 ExcelSoft Software
  5. #  cab 10-May-90
  6. #
  7. OPT=-MT -c -Zp1 -Gs -Os -WX -DEXPAN
  8. LNK=/NOD /NOI 
  9.  
  10. predi.EXE: predi.obj bbsexpan.obj
  11.    link $(LNK) predi+bbsexpan,predi,predi,llibcmt+os2+bbsapi,predi
  12.  
  13. predi.OBJ: predi.c
  14.    cl $(OPT) predi.c
  15.  
  16. bbsexpan.obj: bbsexpan.c bbsexpan.h
  17.    cl $(OPT) bbsexpan.c
  18.    
  19.    
  20.  
  21.