diff options
author | Thomas Wood <thomas.wood@intel.com> | 2014-10-14 13:46:57 +0100 |
---|---|---|
committer | Thomas Wood <thomas.wood@intel.com> | 2014-11-06 13:24:30 +0000 |
commit | e6fec38cf7151596d3f9ead99ea5386be7a7b6de (patch) | |
tree | db9251dd46bdac8bfd05964958026a9e72325515 /Makefile.am | |
parent | 3d0dca47c6fdec0720aca8016af9a889a0eb3409 (diff) |
Build the docs directory last
Ensure that other components are built before generating the
documentation.
v2: build the docs directory after any optional directories
Signed-off-by: Thomas Wood <thomas.wood@intel.com>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 1dacb175..4f71a3a6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,7 +21,7 @@ ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} -I m4 -SUBDIRS = docs lib man tools scripts benchmarks demos overlay +SUBDIRS = lib man tools scripts benchmarks demos overlay if BUILD_ASSEMBLER SUBDIRS += assembler @@ -35,6 +35,8 @@ if BUILD_TESTS SUBDIRS += tests endif +SUBDIRS += docs + MAINTAINERCLEANFILES = ChangeLog INSTALL .PHONY: ChangeLog INSTALL |