diff options
author | Jiri Olsa <jolsa@kernel.org> | 2019-07-21 13:25:06 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-07-29 18:34:47 -0300 |
commit | f4f48e9c1adb49f732ac0abc4b2513f2b62a10cb (patch) | |
tree | 0ffbd5d97fb8289ea430ece6c5dd97bb0a27ab3c /tools/perf/lib/Documentation/Makefile | |
parent | 02266a2d9cf7e04bf3d4b4457654839dc253f605 (diff) |
libperf: Initial documentation
Add initial drafts of documentation files, hugely unfinished.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Alexey Budankov <alexey.budankov@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Michael Petlan <mpetlan@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20190721112506.12306-80-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/lib/Documentation/Makefile')
-rw-r--r-- | tools/perf/lib/Documentation/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/perf/lib/Documentation/Makefile b/tools/perf/lib/Documentation/Makefile new file mode 100644 index 000000000000..586425a88795 --- /dev/null +++ b/tools/perf/lib/Documentation/Makefile @@ -0,0 +1,7 @@ +all: + rst2man man/libperf.rst > man/libperf.7 + rst2pdf tutorial/tutorial.rst + +clean: + rm -f man/libperf.7 + rm -f tutorial/tutorial.pdf |