home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / OP2DEV.ZIP / TTT2.MAK < prev    next >
Text File  |  1990-11-17  |  397b  |  20 lines

  1. #
  2. #  Makefile for TTT2.EXE
  3. #  Simple Tic-Tac-Toe Game 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. ttt2.EXE: ttt2.obj bbsexpan.obj
  11.    link $(LNK) ttt2+bbsexpan,ttt2,ttt2,llibcmt+os2+bbsapi,ttt2
  12.  
  13. ttt2.OBJ: ttt2.c
  14.    cl $(OPT) ttt2.c
  15.  
  16. bbsexpan.obj: bbsexpan.c bbsexpan.h
  17.    cl $(OPT) bbsexpan.c
  18.  
  19.    
  20.