home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / gnu / emacs / vm / bug / 549 < prev    next >
Encoding:
Text File  |  1992-08-27  |  1017 b   |  36 lines

  1. x-gateway: rodan.UU.NET from bug-vm to gnu.emacs.vm.bug; Thu, 27 Aug 1992 10:58:21 EDT
  2. From: kyle@wendy-fate.uu.net (Kyle Jones)
  3. Date: Thu, 27 Aug 1992 10:57:44 -0400
  4. Message-ID: <9208271457.AA03987@wendy-fate.UU.NET>
  5. Subject: Startup problems
  6. References: <9208270822.AA20599@cory.Berkeley.EDU>
  7. Newsgroups: gnu.emacs.vm.bug
  8. Path: sparky!uunet!wendy-fate.uu.net!bug-vm
  9. Sender: bug-vm-request@uunet.uu.net
  10. Lines: 24
  11.  
  12. Sounds like you have a build problem.  Use the following Makefile
  13. to rebuild VM.  Remvoe all the .elc in the VM source directory
  14. and then type make.
  15.  
  16. #!/bin/sh
  17. # shar:    Shell Archiver  (v1.22)
  18. #
  19. #    Run the following text with /bin/sh to create:
  20. #      Makefile
  21. #
  22. sed 's/^X//' << 'SHAR_EOF' > Makefile &&
  23. XEMACS=emacs
  24. X
  25. XVM:
  26. X    $(EMACS) -batch -q -l ./vm-message.el -l ./vm-misc.el -f batch-byte-compile *.el
  27. X    cat vm-*.elc > vm.elc
  28. X
  29. Xvm:    vm.texinfo
  30. X    $(EMACS) -batch -q vm.texinfo -f texinfo-format-buffer -f save-buffer
  31. X
  32. Xall:    VM vm
  33. SHAR_EOF
  34. chmod 0644 Makefile || echo "restore of Makefile fails"
  35. exit 0
  36.