diff options
author | Carl Worth <cworth@cworth.org> | 2009-11-12 22:00:51 -0800 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2009-11-12 22:00:51 -0800 |
commit | 184c327692b8a8fc08a8b9ddee28d7082c208c23 (patch) | |
tree | 18a3390a20140f04a3a2430d420b47dea338263d /lib/Makefile | |
parent | c3c0966521a4d9e04281ae9ee0abcc33ace67c47 (diff) |
Use $(MAKE) when invoking make from make.
Without this, things like MAKEFLAGS=-j4 can't work.
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index 80d7059c..9a29ffcf 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,5 +1,5 @@ all: - make -C .. all + $(MAKE) -C .. all clean: - make -C .. clean + $(MAKE) -C .. clean |