home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume26 / port-lpr / part01 / descrip.mms < prev    next >
Text File  |  1993-04-09  |  739b  |  29 lines

  1. # Makefile for VMS MMS (Module Management System)
  2. # You may have to modify this file slightly to work on other VMS make clones
  3. #
  4. # pick a back-end driver from one of the following:
  5. #
  6. #DRIVER=vms-ucx-tcp.obj        # VMS Ultrix Connection
  7. #DRIVER=vms-win-tcp.obj        # VMS WIN/TCP
  8. DRIVER=vms-decnet.obj        # DECnet-VAX (requires gateway on UNIX)
  9. #
  10. # pick a library to go with the driver
  11. #
  12. #LIBRARY=sys$library:ucx$ipc.olb/lib        # VMS Ultrix Connection
  13. #LIBRARY=twg$tcp:[netdist.lib]twglib.olb/lib    # VMS WIN/TCP
  14. LIBRARY=sys$library:vaxcrtl.olb/lib        # dummy for DECnet
  15. #
  16. #
  17. CFLAGS=/debug
  18. LDFLAGS=
  19. #
  20. lpr.exe : lpr.obj $(DRIVER)
  21.     LINK $(LDFLAGS) lpr.obj,$(DRIVER),$(LIBRARY)
  22.  
  23. lpr.obj : lpr.c config.h
  24.     $(CC) $(CFLAGS) lpr.c
  25.  
  26.  
  27. clean :
  28.     del lpr.exe;*,*.obj;*
  29.