home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume21 / coda / part01 / descrip.mms < prev    next >
Encoding:
Text File  |  1990-04-08  |  814 b   |  38 lines

  1. ##
  2. ##  Copyright 1989 BBN Systems and Technologies Corporation.
  3. ##  All Rights Reserved.
  4. ##  This is free software, and may be distributed under the terms of the
  5. ##  GNU Public License; see the file COPYING for more details.
  6. ##
  7. ##  VMS MMS file for CODA client.
  8. ##  $Header: descrip.mms,v 2.0 90/04/09 16:23:37 rsalz Exp $
  9. ##
  10. #DEBUG    = /DEBUG
  11. DEBUG    =
  12.  
  13. CFLAGS    = $(DEBUG) /DEFINE=VMS /INCLUDE=DUA0:[NETDIST.INCLUDE.]
  14. OBJ    = client.obj version.obj libvms.obj
  15.  
  16.  
  17. ##  Generic targets.
  18. all        : coda.exe
  19.     @ write sys$output ""
  20.  
  21. install        : all
  22.     @ write sys$output "Install according to local convention"
  23.  
  24. clean        :
  25.     delete/noconfirm *.obj;*, *.exe;*, foo.txt;*
  26.  
  27. purge        :
  28.     purge
  29.  
  30.  
  31. ##  Client.
  32. coda.exe    : $(OBJ)
  33.     LINK $(DEBUG) $(LINKFLAGS) $+,coda.opt/opt
  34.  
  35. $(OBJ)        : client.h
  36. libvms.obj    : vmsutime.inc
  37. version.obj    : patchlevel.h
  38.