home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / wpbif094.zip / biff.MAK < prev    next >
Makefile  |  2013-01-24  |  1KB  |  40 lines

  1. #    Copyright VOS 1995
  2. #    Author: Vitaly S. Gumirov
  3. #
  4. #  Compiler options:
  5. #
  6. #   /Ti  : Generate debugger information
  7. #   /Sm  : Allow migration extensions
  8. #   /Ss  : Allow '//' for comments
  9. #   /Q   : Do not display logo
  10. #   /Kb  : Produce basic diagnostic message
  11. #   /W2  : Produce severe errors, errors and warnings
  12. #   /Gm  : Link with the multithread version of library
  13. #   /Gt  : Enavle all variables to be passed to 16-bit function.
  14. #          Static & external variables are mapped into 16-bit segment.
  15. #          Variables larger then 64k will be alligned on, but will still
  16. #          cross, 64k boundary.
  17. #   /C   : Compile only
  18. #
  19. #
  20. #  Linker options:
  21. #
  22. #   /De  : Prepare for Debugging
  23. #   /NOI : Preserve the case sensitivity
  24.  
  25. INCLUDE=$(INCLUDE);c:\tcpip\include
  26. LIB=$(LIB);h:\ibmcpp\lib;s:\tcpip\lib;
  27. CPPFLAGS=/Fi+ /Si+ /Ti /DOS2 /Sm /Ss /Q  /W2 /Gm /Gt /C 
  28. CC=icc 
  29.  
  30. all: biff.exe
  31.  
  32. biff.obj : biff.cpp tcpsock.hpp
  33.   $(CC) $(CPPFLAGS)  biff.Cpp
  34.  
  35. tcpsock.obj : tcpsock.cpp tcpsock.hpp
  36.   $(CC) $(CPPFLAGS) tcpsock.cpp
  37.  
  38. biff.exe: biff.obj biff.mak tcpsock.obj
  39.   ilink /nofree biff tcpsock,biff.exe,NUL,os2386.lib so32dll.lib tcp32dll.lib,sock.def;
  40.