Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(286)

Unified Diff: Makefile.standalone

Issue 1207823002: Add doxygen build target (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add docs to gitignore Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Doxyfile ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.standalone
diff --git a/Makefile.standalone b/Makefile.standalone
index 5f2686ba8f7788db34b49715bed3689905a65640..8dafc83a0a09a3450bc82f5c521846dd56901177 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -234,7 +234,7 @@ make_symlink: $(OBJDIR)/pnacl-sz
@echo "Build Attributes:"
@$(OBJDIR)/pnacl-sz --build-atts
-.PHONY: all make_symlink runtime bloat sb
+.PHONY: all make_symlink runtime bloat sb docs
$(OBJDIR)/pnacl-sz: $(OBJS)
$(CXX) $(LDFLAGS) -o $@ $^ $(LLVM_LDFLAGS) \
@@ -338,8 +338,12 @@ bloat: make_symlink
bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json
@echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html
+docs:
Jim Stichnoth 2015/06/26 00:56:18 Seems like this should still depend on the Doxyfil
ascull 2015/06/29 17:05:11 As it is a PHONY target it is always out of date s
+ doxygen Doxyfile
+ @echo See file://`pwd`/docs/html/index.html
+
clean:
rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json
clean-all: clean
- rm -rf build/
+ rm -rf build/ docs/
« no previous file with comments | « Doxyfile ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698