aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjoern Brandenburg <bbb@mpi-sws.org>2013-11-27 06:05:21 -0500
committerBjoern Brandenburg <bbb@mpi-sws.org>2013-11-27 06:05:21 -0500
commit871eef081ff9db7289a6947d0160cd984232c34c (patch)
tree74b45c99036286c10bf6086e391e013a5f290b4d
parent33efb47a220a3edfcb80ddf7aa20d65c26ebf916 (diff)
Hook up doxygen as 'make doc'
Also adjust 'make clean' and .gitignore.
-rw-r--r--.gitignore1
-rw-r--r--Makefile6
2 files changed, 6 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 6b3f840..a52500b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,6 +7,7 @@
7# generated files 7# generated files
8tests/test_catalog.inc 8tests/test_catalog.inc
9*.d 9*.d
10docs/
10 11
11# executables 12# executables
12runtests 13runtests
diff --git a/Makefile b/Makefile
index e8003e8..4742fd2 100644
--- a/Makefile
+++ b/Makefile
@@ -75,7 +75,7 @@ all = lib ${rt-apps}
75rt-apps = cycles base_task rt_launch rtspin release_ts measure_syscall \ 75rt-apps = cycles base_task rt_launch rtspin release_ts measure_syscall \
76 base_mt_task uncache runtests 76 base_mt_task uncache runtests
77 77
78.PHONY: all lib clean dump-config TAGS tags cscope help 78.PHONY: all lib clean dump-config TAGS tags cscope help doc
79 79
80all: ${all} inc/config.makefile 80all: ${all} inc/config.makefile
81 81
@@ -116,12 +116,16 @@ dump-config:
116help: 116help:
117 @cat INSTALL 117 @cat INSTALL
118 118
119doc:
120 doxygen Doxyfile
121
119clean: 122clean:
120 rm -f ${rt-apps} 123 rm -f ${rt-apps}
121 rm -f *.o *.d *.a test_catalog.inc 124 rm -f *.o *.d *.a test_catalog.inc
122 rm -f ${imported-headers} 125 rm -f ${imported-headers}
123 rm -f inc/config.makefile 126 rm -f inc/config.makefile
124 rm -f tags TAGS cscope.files cscope.out 127 rm -f tags TAGS cscope.files cscope.out
128 rm -r -f docs
125 129
126# Emacs Tags 130# Emacs Tags
127TAGS: 131TAGS: