mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
341d49b061
Taking advantage of the .DEFAULT construct means that we won't need to explicitly list targets such as "clean", etc. in each sub-Makefile.
5 lines
53 B
Makefile
5 lines
53 B
Makefile
all:
|
|
$(MAKE) -C .. all
|
|
|
|
.DEFAULT:
|
|
$(MAKE) -C .. $@
|