aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs/Makefile.local
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-04-05 12:59:06 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-04-05 12:59:06 -0700
commit4235ef510926c8b25aeb55966c8d990c1594be64 (patch)
tree857988988c642941aa796fabaac200e9512d41e0 /emacs/Makefile.local
parentc2f3710a786dc8d610ccd8138ccfe5089686bec2 (diff)
Makfiles: Make the top-level targets PHONY
Just to avoid any clash with files of the same names.
Diffstat (limited to 'emacs/Makefile.local')
-rw-r--r--emacs/Makefile.local2
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs/Makefile.local b/emacs/Makefile.local
index 626a4e51..76cc64f9 100644
--- a/emacs/Makefile.local
+++ b/emacs/Makefile.local
@@ -9,8 +9,10 @@ emacs_sources := \
emacs_bytecode := $(subst .el,.elc,$(emacs_sources))
+.PHONY: emacs
emacs: $(emacs_bytecode)
+.PHONY: install-emacs
install-emacs: install emacs
$(call quiet_mkdir, $(DESTDIR)/$(emacs_lispdir))
$(call quiet_install_data, $(emacs_sources) $(emacs_bytecode) $(DESTDIR)$(emacs_lispdir))