diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 6 |
2 files changed, 6 insertions, 1 deletions
@@ -7,6 +7,7 @@ | |||
7 | # generated files | 7 | # generated files |
8 | tests/test_catalog.inc | 8 | tests/test_catalog.inc |
9 | *.d | 9 | *.d |
10 | docs/ | ||
10 | 11 | ||
11 | # executables | 12 | # executables |
12 | runtests | 13 | runtests |
@@ -75,7 +75,7 @@ all = lib ${rt-apps} | |||
75 | rt-apps = cycles base_task rt_launch rtspin release_ts measure_syscall \ | 75 | rt-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 | ||
80 | all: ${all} inc/config.makefile | 80 | all: ${all} inc/config.makefile |
81 | 81 | ||
@@ -116,12 +116,16 @@ dump-config: | |||
116 | help: | 116 | help: |
117 | @cat INSTALL | 117 | @cat INSTALL |
118 | 118 | ||
119 | doc: | ||
120 | doxygen Doxyfile | ||
121 | |||
119 | clean: | 122 | clean: |
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 |
127 | TAGS: | 131 | TAGS: |