bash_completion_dir = /etc/bash_completion.d
zsh_completion_dir = /usr/share/zsh/functions/Completion/Unix
-global_deps = Makefile Makefile.local Makefile.config \
- lib/Makefile lib/Makefile.local
-
extra_cflags :=
extra_cxxflags :=
@echo ""
./configure
-include Makefile.config
+subdirs = compat emacs lib
+
+global_deps = Makefile Makefile.config Makefile.local \
+ $(subdirs:%=%/Makefile) $(subdirs:%=%/Makefile.local)
-include lib/Makefile.local
-include compat/Makefile.local
-include emacs/Makefile.local
-include Makefile.local
+include Makefile.config Makefile.local $(subdirs:%=%/Makefile.local)
# The user has not set any verbosity, default to quiet mode and inform the
# user how to enable verbose compiles.
-dir=emacs
-emacs_sources= \
- $(dir)/notmuch.el
+dir := emacs
+emacs_sources := $(dir)/notmuch.el
-emacs_bytecode=$(subst .el,.elc,$(emacs_sources))
+emacs_bytecode := $(subst .el,.elc,$(emacs_sources))
emacs: $(emacs_bytecode)