[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
byte compiling Emacs Lisp files with make
From: |
Kevin Rodgers |
Subject: |
byte compiling Emacs Lisp files with make |
Date: |
Mon, 21 May 2001 10:43:12 -0600 |
Shouldn't make provide an implicit rule for building a .elc file from a .el
file? This is what I use:
.SUFFIXES: $(SUFFIXES) .el .elc
EMACS = emacs
# ELFLAGS = -l default
.el.elc:
$(EMACS) -batch $(ELFLAGS) -f batch-byte-compile $<
--
Kevin Rodgers <address@hidden> Lead Software Engineer
Information Handling Services Electronic Systems Development
15 Inverness Way East, M/S A114 GO BUFFS!
Englewood CO 80112-5776 USA 1+ (303) 397-2807[voice]/705-4258[fax]
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- byte compiling Emacs Lisp files with make,
Kevin Rodgers <=