diff options
author | Nicky Sielicki <nlsielicki@wisc.edu> | 2015-06-06 08:55:16 -0500 |
---|---|---|
committer | Edward O'Callaghan <edward.ocallaghan@koparo.com> | 2015-06-07 02:51:47 +0200 |
commit | e08a2a585e14e049054c04ed5e0ba1392184460f (patch) | |
tree | d11871127c5cc7c54e7b8f5942ba432abb6540da | |
parent | d9bc2fadc4ea74ebca0d793aeef288fe9f1acf0c (diff) |
fix doxy target in root Makefile
the moving of 'documentation' to 'Documentation/' means that the doxygen
target in the main Makefile was broken as it couldn't find the directory.
Change-Id: If6c6d34110e683f38959571a03767fb472675f40
Signed-off-by: Nicky Sielicki <nlsielicki@wisc.edu>
Reviewed-on: http://review.coreboot.org/10445
Tested-by: build bot (Jenkins)
Reviewed-by: Idwer Vollering <vidwer@gmail.com>
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -256,10 +256,10 @@ cscope: doxy: doxygen doxygen: - $(DOXYGEN) documentation/Doxyfile.coreboot + $(DOXYGEN) Documentation/Doxyfile.coreboot doxygen_simple: - $(DOXYGEN) documentation/Doxyfile.coreboot_simple + $(DOXYGEN) Documentation/Doxyfile.coreboot_simple doxyclean: doxygen-clean doxygen-clean: |