diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2005-05-16 18:29:13 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2005-05-16 18:29:13 +0000 |
commit | d5de2c8ede28295c064c2166b0ac1c6766ee9824 (patch) | |
tree | 717c9e3b504aa5fef127841b7acf846ff63020a8 /docs/Makefile | |
parent | 05eaeae23aeb6d7910384ee8c206221f23cacbda (diff) | |
download | external_llvm-d5de2c8ede28295c064c2166b0ac1c6766ee9824.zip external_llvm-d5de2c8ede28295c064c2166b0ac1c6766ee9824.tar.gz external_llvm-d5de2c8ede28295c064c2166b0ac1c6766ee9824.tar.bz2 |
Adjust the dependencies and generate the output to docs/userloc.html so
that it can properly link to the CSS stylesheet and images.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22092 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/Makefile')
-rw-r--r-- | docs/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/Makefile b/docs/Makefile index dc1f74c..dfdd7ba 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -64,8 +64,10 @@ $(PROJ_OBJ_DIR)/doxygen.tar.gz: $(DOXYFILES) $(PROJ_OBJ_DIR)/doxygen.cfg $(Verb) $(TAR) cf $(PROJ_OBJ_DIR)/doxygen.tar doxygen $(Verb) $(GZIP) $(PROJ_OBJ_DIR)/doxygen.tar -userloc.html: +userloc: $(LLVM_SRC_ROOT)/docs/userloc.html + +$(LLVM_SRC_ROOT)/docs/userloc.html: $(Echo) Making User LOC Table $(Verb) cd $(LLVM_SRC_ROOT) ; ./utils/userloc.pl -details -recurse \ - -html lib include tools runtime utils examples autoconf test > userloc.html + -html lib include tools runtime utils examples autoconf test > docs/userloc.html |