diff options
author | Michael Olson <mwolson@gnu.org> | 2006-04-01 23:25:00 +0000 |
---|---|---|
committer | Michael Olson <mwolson@gnu.org> | 2006-04-01 23:25:00 +0000 |
commit | da7d1d0ebae7e4b6d8027a7fec3eef0c3816f2b6 (patch) | |
tree | 55e799ab6ce07c25b92114743e93eab9592828bc | |
parent | 1553d6a08d5c6432cfd5343dda8e7b7b57536362 (diff) |
Makefile: Don't show Emacs commandline. Remove generated HTML file in clean rule.
darcs-hash:20060401232522-1bfb2-472b1a3fa77db3d21f53fde078a28c371fb7c992.gz
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -14,14 +14,14 @@ all: $(TARGET) emms-auto.el emms.info emms-auto.el: emms-auto.in $(SOURCE) cp emms-auto.in emms-auto.el -rm -f emms-auto.elc - $(EMACS) --no-init-file --no-site-file -batch \ + @$(EMACS) --no-init-file --no-site-file -batch \ -l emms-maint.el \ -l emms-auto.el \ -f generate-autoloads \ $(shell pwd)/emms-auto.el . %.elc: %.el - $(EMACS) --no-init-file --no-site-file -batch \ + @$(EMACS) --no-init-file --no-site-file -batch \ -l emms-maint.el \ -f batch-byte-compile $< @@ -46,4 +46,5 @@ ChangeLog: darcs changes > $@ clean: - -rm -f *~ *.elc emms-auto.el emms.info ChangeLog emms-print-metadata + -rm -f *~ *.elc emms-auto.el emms.info emms.html ChangeLog \ + emms-print-metadata |