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

  1. #
  2. #  Makefile for CZAR.EXE
  3. #  Program to load CzarWars 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. CZAR.EXE: czar.obj bbsexpan.obj
  11.    link $(LNK) czar+bbsexpan,czar,czar,llibcmt+os2+bbsapi,czar
  12.  
  13. CZAR.OBJ: czar.c
  14.    cl $(OPT) czar.c
  15.  
  16. BBSEXPAN.OBJ: bbsexpan.c bbsexpan.h
  17.    cl $(OPT) bbsexpan.c
  18.    
  19.    
  20.  
  21.  
  22.