HAWQ-739. Add doxygen template to generate test common lib document.

Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/9078784a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/9078784a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/9078784a

Branch: refs/heads/master
Commit: 9078784a541a985e20c7b4c13e21cd8e657c9cf5
Parents: fd9c368
Author: hzhang2 <[email protected]>
Authored: Wed May 18 22:05:34 2016 +0800
Committer: hzhang2 <[email protected]>
Committed: Thu May 19 10:00:40 2016 +0800

----------------------------------------------------------------------
 src/test/feature/Makefile             |    6 +-
 src/test/feature/doxygen_template     | 2406 ++++++++++++++++++++++++++++
 src/test/feature/lib/hawq-config.h    |   97 +-
 src/test/feature/testlib/test-lib.cpp |    8 +-
 4 files changed, 2497 insertions(+), 20 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/9078784a/src/test/feature/Makefile
----------------------------------------------------------------------
diff --git a/src/test/feature/Makefile b/src/test/feature/Makefile
index c3a122a..e0f133e 100644
--- a/src/test/feature/Makefile
+++ b/src/test/feature/Makefile
@@ -15,14 +15,18 @@ override LDFLAGS += -L/usr/local/lib -L/usr/lib 
-L$(abs_top_srcdir)/src/test/fea
 PROG = test-main.cpp $(wildcard */*.cpp)
 RM = rm -rf
 
-.PHONY: all distclean  clean
+.PHONY: all distclean clean doc
 
 all:
        $(MAKE) -C lib all
        $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(PROG) $(LDFLAGS) $(LIBS) -o 
feature-test
 
+doc:
+       doxygen doxygen_template
+
 clean distclean:
        $(RM) feature-test
        $(RM) feature-test.dSYM
+       $(RM) doc
        $(MAKE) -C lib clean
        

Reply via email to