diff options
author | Michael Olson <mwolson@gnu.org> | 2008-09-17 11:19:35 -0700 |
---|---|---|
committer | Michael Olson <mwolson@gnu.org> | 2008-09-17 11:19:35 -0700 |
commit | 56a0223179942c6a7f8f90bf7c26922638ccb304 (patch) | |
tree | 812a78ddc2744b3f3f08f3fcdad610edec2aea7f /lisp | |
parent | 71cec79f643194d19b48d20574a37b1489274833 (diff) |
Makefile: Generate autoloads before compiling source.
This makes compilation warnings in the source easier to spot, and mirrors
the behavior of Emacs itself.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/Makefile b/lisp/Makefile index 3153b9b..e9e7d20 100644 --- a/lisp/Makefile +++ b/lisp/Makefile @@ -8,7 +8,7 @@ TARGET=$(patsubst %.el,%.elc,$(SOURCE)) .PHONY: all clean .PRECIOUS: %.elc -all: $(TARGET) emms-auto.el +all: emms-auto.el $(TARGET) emms-auto.el: emms-auto.in $(SOURCE) cp emms-auto.in emms-auto.el |