bug-gnu-emacs
[Top][All Lists]
Advanced

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

Re: please make byte compiling during bootstrap take advantage of make -


From: Glenn Morris
Subject: Re: please make byte compiling during bootstrap take advantage of make -j
Date: Tue, 06 May 2008 23:05:06 -0400
User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)

>> doing what you want boils down to making the `compile:' target
>> depend on all the .elc files; the rest will be done automatically by
>> Make.

But how to do this without hard-coding the names of all the .elc files?

With GNU make, I would try something like:

  compile: $(shell find . -name '*.el' | sed 's/\.el$$/.elc/' )

but I'm sure this is not portable.




reply via email to

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