home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / lan / soss.arj / SRC / MAKEFILE < prev    next >
Text File  |  1991-04-11  |  1KB  |  54 lines

  1. # Makefile for SOSS.  Tested with dmake and Microsoft make.
  2. #   There is one expected error message when linked against the PC/IP
  3. #   library and SLIBCE from Microsoft:  the symbol "signal" is defined
  4. #   twice.  dmake requires the '-k' option or else it will remove the
  5. #   just-produced SOSS.EXE file.
  6.  
  7. # $Id: makefile._v 1.2 1991/04/11 20:40:12 richb Exp $
  8.  
  9. all: soss.exe
  10.  
  11. OBJS = dtime.obj inodes.obj u_xdr.obj files.obj mnt_xdr.obj mountd.obj exports.obj pmap.obj netd.obj sock.obj nfs.obj debug.obj 
  12.  
  13. CFLAGS = /c /DMSC /DDEBUG /Gs /Os
  14. CC     = cl
  15.  
  16. dtime.obj:    dtime.c
  17.     $(CC) $(CFLAGS)  dtime.c
  18.  
  19. inodes.obj:    inodes.c inodes.h
  20.     $(CC) $(CFLAGS)  inodes.c
  21.  
  22. u_xdr.obj:    u_xdr.c
  23.     $(CC) $(CFLAGS)  u_xdr.c
  24.  
  25. files.obj:    files.c nfs.h novell.h
  26.     $(CC) $(CFLAGS) files.c
  27.  
  28. mnt_xdr.obj:    mnt_xdr.c
  29.     $(CC) $(CFLAGS) mnt_xdr.c
  30.  
  31. mountd.obj: mountd.c mountd.h exports.h
  32.     $(CC) $(CFLAGS) mountd.c
  33.  
  34. exports.obj:    exports.c exports.h
  35.     $(CC) $(CFLAGS) exports.c
  36.  
  37. pmap.obj:    pmap.c     pmap.h
  38.     $(CC) $(CFLAGS) pmap.c
  39.  
  40. netd.obj:    netd.c    netd.h nfs.h
  41.     $(CC) $(CFLAGS) netd.c
  42.  
  43. sock.obj: sock.c sock.h in.h
  44.     $(CC)  $(CFLAGS) /Zl sock.c
  45.  
  46. nfs.obj: nfs.h nfs.c
  47.     $(CC) $(CFLAGS) nfs.c
  48.  
  49. debug.obj: debug.h debug.c
  50.     $(CC) $(CFLAGS) debug.c
  51.  
  52. soss.exe: $(OBJS)
  53.     link /MAP/NOI/NOE /CO /ST:10240 @lrespd
  54.