emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

two patches for the Makefiles


From: Han Boetes
Subject: two patches for the Makefiles
Date: Sat, 6 Nov 2004 22:00:29 +0100
User-agent: Mutt/1.5.6i

Hi,

Here are two patches for the emacs Makefiles:

This patch aims to make sure the only file which is forgotten
after a make maintainer-clean is also removed.


--- orig/lisp/Makefile.in
+++ mod/lisp/Makefile.in
@@ -312,7 +312,7 @@
        fi
 
 maintainer-clean:
-       cd $(lisp); rm -f *.elc */*.elc $(AUTOGENEL)
+       -rm -f ./Makefile; cd $(lisp); rm -f *.elc */*.elc $(AUTOGENEL)
 
 # Generate/update files for the bootstrap process.
 



This patch causes that make install doesn't relink emacs before
installing emacs.


--- orig/src/Makefile.in
+++ mod/src/Makefile.in
@@ -969,10 +969,8 @@
    to both ensure that lwlib gets remade based on its dependencies
    in its own makefile,
    and remake temacs if lwlib gets changed by this.  */
-stamp-oldxmenu: ${OLDXMENU} ../src/$(OLDXMENU)
+stamp-oldxmenu: ${OLDXMENU}
        touch stamp-oldxmenu
-/* Supply an ordering for parallel make.  */
-../src/$(OLDXMENU): ${OLDXMENU}
 
 #ifdef USE_X_TOOLKIT
 $(OLDXMENU): really-lwlib




# Han




reply via email to

[Prev in Thread] Current Thread [Next in Thread]