Re: Bugs in installing...

Jan-Åke Larsson <[email protected]> Thu, 24 Mar 2005 16:08:45 +0100
Newsgroups gmane.emacs.auc-tex
Message-ID <[email protected]>
Ralf Angeli wrote:

>Hm, as far as I interpret
>
>,----[ (info "(make)Standard Targets") ]
>| `distclean'
>|      Delete all files from the current directory that are created by
>|      configuring or building the program.  If you have unpacked the
>|      source and built the program without creating any other files,
>|      `make distclean' should leave only the files that were in the
>|      distribution.
>`----
>
>the distclean target should not delete autom4te.cache.
>  
>
Weeell, it should not be present in a buid tree anyway (being generated 
by autoconf, but
not needed for running the configure script). You can move it to 
maintainer-clean _and_
tarball-ready. Or, I'll see if I have time tonight.

>-AUCELC = tex.elc tex-buf.elc latex.elc tex-info.elc \
>-	texmathp.elc multi-prompt.elc tex-mik.elc font-latex.elc tex-font.elc \
>-	context.elc context-en.elc context-nl.elc tex-fold.elc \
>-	toolbar-x.elc tex-bar.elc
>-# Why not $(AUCSRC:.el=.elc) ?
>+AUCELC = $(AUCSRC:.el=.elc)
>  
>
Good point. I was wondering myself, but this is left over from the old 
Makefile I think.

>+CLEANFILES = $(AUCELC) $(STYLESRC:.el=.elc)
>+
>+DISTCLEANFILES = Makefile tex-site.el config.*
>+
>This is not far from your implementation.  The names CLEANFILES and
>DISTCLEANFILES are derived from automake, see (info "(automake-1.8)Clean").
>  
>
By all means.
/JÅ