diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2006-08-11 00:24:01 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2006-08-11 00:24:47 -0400 |
commit | affc9c71acc1ea206dee0a4056c4f5b307fc7f38 (patch) | |
tree | f2095cff65a2ff7fd207d088377d73b47914b16b /doc/Makefile.am | |
parent | c04ccc95fa3cd4272889b1e66e4de5e1bef53ae0 (diff) |
[Makefile.am] Add $(AM_MAKEFLAGS) to recursive make invocations
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 74d82988..4bca815b 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,4 +1,4 @@ SUBDIRS=public .PHONY: doc doc: - -$(MAKE) -C public doc + cd public && $(MAKE) $(AM_MAKEFLAGS) public doc |