This website requires JavaScript.
Explore
Help
Sign in
debian
/
notmuch
Watch
1
Star
0
Fork
You've already forked notmuch
0
mirror of
https://git.notmuchmail.org/git/notmuch
synced
2024-11-22 19:08:09 +01:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
Actions
3f52f59c1e
notmuch
/
lib
/
Makefile
6 lines
53 B
Makefile
Raw
Normal View
History
Unescape
Escape
Implement a non-recursive make. The idea here is that every Makefile at each lower level will be an identical, tiny file that simply defers to a top-level make. Meanwhile, the Makefile.local file at each level is a Makefile snippet to be included at the top-level into a large, flat Makefile. As such, it needs to define its rules with the entire relative directory to each file, (typically in $(dir)). The local files can also append to variables such as SRCS and CLEAN for files to be analyzed for dependencies and to be cleaned.
2009-11-10 16:14:49 +01:00
all
:
Use $(MAKE) when invoking make from make. Without this, things like MAKEFLAGS=-j4 can't work.
2009-11-13 07:00:51 +01:00
$(
MAKE
)
-C .. all
Implement a non-recursive make. The idea here is that every Makefile at each lower level will be an identical, tiny file that simply defers to a top-level make. Meanwhile, the Makefile.local file at each level is a Makefile snippet to be included at the top-level into a large, flat Makefile. As such, it needs to define its rules with the entire relative directory to each file, (typically in $(dir)). The local files can also append to variables such as SRCS and CLEAN for files to be analyzed for dependencies and to be cleaned.
2009-11-10 16:14:49 +01:00
clean
:
Use $(MAKE) when invoking make from make. Without this, things like MAKEFLAGS=-j4 can't work.
2009-11-13 07:00:51 +01:00
$(
MAKE
)
-C .. clean
Reference in a new issue
Copy permalink