home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD v1.2 / amidev_cd_12.iso / devcon / milan_1991 / devcon91.2 / network / socket / examples / lmkfile < prev    next >
Text File  |  1992-09-01  |  694b  |  27 lines

  1. #  SAS C 5.10 makefile.
  2. #
  3. #  netinc: needs to be assigned to where your inet includes are.
  4. #  v:include needs to be where your 2.0 includes are
  5. #  (-iv:include can be eliminated from the lc line if you use only SAS
  6. #  includes or if include: is where your 2.0 includes are.)
  7.  
  8. CLIB   = lib:lc.lib lib:amiga.lib lib:debug.lib
  9.  
  10.  
  11. .c.o:
  12.     lc -v -O -inetinc: -iv:include/ $*.c
  13.  
  14. ncopy: ncopy.o transfer.o
  15.     blink FROM lib:c.o ncopy.o transfer.o TO $@ LIB $(CLIB)
  16.  
  17. server1: server1.o
  18.     blink FROM lib:c.o server1.o TO $@ LIB $(CLIB)
  19.  
  20. server2: server2.o
  21.     blink FROM lib:c.o server2.o TO $@ LIB $(CLIB)
  22.  
  23. server3: server3.o
  24.     blink FROM lib:c.o server3.o TO $@ LIB $(CLIB)
  25.  
  26. all: ncopy server1 server2 server3
  27.