From 7dd8eff4d05be8369af5507a5691b382bad3bf11 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Mon, 2 Aug 1999 02:05:06 +0000 Subject: [PATCH] (distclean): Remove dgnuspath.el instead of paths.el. (install): Don't install dgnuspath.el. --- lisp/Makefile.in | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/lisp/Makefile.in b/lisp/Makefile.in index e84fca1..9498ba6 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -28,11 +28,16 @@ clever some: install: clever rm -f dgnushack.elc $(SHELL) $(top_srcdir)/mkinstalldirs $(lispdir) - for p in *.el *.elc; do \ - echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \ - $(INSTALL_DATA) $$p $(lispdir)/$$p; \ + @for p in *.el; do \ + if test "$$p" != "dgnuspath.el"; then \ + echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \ + $(INSTALL_DATA) $$p $(lispdir)/$$p; \ + if test -f $$p"c"; then \ + echo " $(INSTALL_DATA) $$p""c"" $(lispdir)/$$p""c"; \ + $(INSTALL_DATA) $$p"c" $(lispdir)/$$p"c"; \ + fi; \ + fi; \ done - touch $(lispdir)/*.elc package: $(EMACS) $(FLAGS) -f dgnushack-make-package @@ -68,7 +73,7 @@ clean: rm -f auto-autoloads.el custom-load.el distclean: clean - rm -f Makefile paths.el + rm -f Makefile dgnuspath.el Makefile: $(srcdir)/Makefile.in ../config.status cd .. \ -- 1.7.10.4