home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 May / cica_0595_4.zip / cica_0595_4 / WINSOCK / TXTSRV / MAKEFILE < prev    next >
Text File  |  1993-03-26  |  497b  |  34 lines

  1. # makes the windows socket text server
  2.  
  3. COPTS = -nologo -c -AL -Gsw -Zp -W3 -DWINVER=0x300
  4. LOPTS = /NOD
  5. OBJS  = txtsrv.obj
  6. LIBS  = libw llibcew winsock
  7.  
  8. .c.obj :
  9.         cl $(COPTS) $< > $*.cer
  10.  
  11.  
  12. all : txtsrv.exe
  13.  
  14.  
  15. txtsrv.exe : $(OBJS) txtsrv.res txtsrv.def
  16.         link $(LOPTS) @<<
  17. $(OBJS),
  18. txtsrv,
  19. NUL,
  20. $(LIBS),
  21. txtsrv.def;
  22. <<
  23.         rc txtsrv.res
  24.  
  25. txtsrv.res : txtsrv.rc
  26.         rc -r txtsrv.rc
  27.  
  28. clean:
  29.         del *.obj
  30.         del *.res
  31.         del *.cer
  32.  
  33.  
  34.