mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-25 08:38:55 +08:00
8 lines
264 B
Plaintext
8 lines
264 B
Plaintext
|
#!/bin/sh
|
||
|
# $Id: elisp-comp,v 1.1 1997/08/21 22:57:57 jason Exp $
|
||
|
# Trivial script to compile the Elisp files.
|
||
|
setpath=${TMPDIR-/tmp}/elc.$$
|
||
|
echo "(setq load-path (cons nil load-path))" > $setpath
|
||
|
emacs -batch -l $setpath -f batch-byte-compile "$@"
|
||
|
rm -f $setpath
|