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

  1. #
  2. #  Makefile for DLLTEST.DLL
  3. #  Demonstration of how to attach a DLL Module to 
  4. #  Omega Point/2 BBS
  5. #  Copyright (c) 1990 ExcelSoft Software, all rights reserved.
  6. #  cab 10may90
  7. #
  8. OPT=-ML -c -Zp1 -Gs -WX -DEXPAN
  9. LNK=/NOD /NOI 
  10.  
  11. DLLTEST.DLL: dlltest.obj
  12.    link /NOI/NOD dlltest,dlltest.dll,dlltest,llibcdll+os2+bbsapi,dlltest.def;
  13.  
  14. DLLTEST.OBJ: dlltest.c
  15.    cl $(OPT) dlltest.c
  16.  
  17.