summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorChad Versace <chad.versace@linux.intel.com>2012-11-14 23:41:40 -0800
committerChad Versace <chad.versace@linux.intel.com>2012-11-14 23:56:08 -0800
commite9d612ec64c78cfb31a41784a69d0eaf062b78ad (patch)
tree35175e4311e67938572281ebda5a631263468fda /man
parent415265f0d2b68d7af177acbb715b5b0cb38009ee (diff)
man: Move manpages.css into /doc/html/man
The build system was copying /man/manpage.css into /doc/html/man/. It's silly to have build rules that just copy files around, so let's just permanently move it there. Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
Diffstat (limited to 'man')
-rw-r--r--man/html.cmake8
-rw-r--r--man/manpage.css51
2 files changed, 0 insertions, 59 deletions
diff --git a/man/html.cmake b/man/html.cmake
index 07dc9f7..dc6bb47 100644
--- a/man/html.cmake
+++ b/man/html.cmake
@@ -28,7 +28,6 @@ set(html_out_dir ${CMAKE_BINARY_DIR}/doc/html/man)
file(MAKE_DIRECTORY ${html_out_dir})
set(html_outputs
- ${html_out_dir}/manpage.css
${html_out_dir}/waffle_attrib_list.3.html
${html_out_dir}/waffle_config.3.html
${html_out_dir}/waffle_context.3.html
@@ -84,13 +83,6 @@ waffle_add_html(3 waffle_window)
waffle_add_html(3 waffle_x11_egl)
waffle_add_html(7 waffle)
-add_custom_command(
- OUTPUT ${html_out_dir}/manpage.css
- DEPENDS manpage.css
- WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
- COMMAND cp manpage.css ${html_out_dir}/manpage.css
- )
-
add_custom_target(html
ALL
DEPENDS ${html_outputs}
diff --git a/man/manpage.css b/man/manpage.css
deleted file mode 100644
index 4d98540..0000000
--- a/man/manpage.css
+++ /dev/null
@@ -1,51 +0,0 @@
-body, table {
- font-family: "Bitstream Vera Sans", "DejaVu Sans", Tahoma, sans-serif;
- color: #333333;
- background: white;
- font-size: 12px;
- line-height: 16px;
-}
-
-h1, h2, h3, h4, h5 {
- padding: 0;
- margin: 0;
- font-weight: bold;
-}
-h1 {
- font-size: 36px;
- line-height: 40px;
-}
-h2 {
- font-size: 24px;
- line-height: 28px;
- margin-bottom: 8px;
- padding-top: 8px;
-}
-h3 {
- font-size: 16px;
- line-height: 20px;
- margin-bottom: 8px;
- padding-top: 8px;
-}
-
-h4 {
- font-size: 12px;
- line-height: 16px;
-}
-
-code {
- font-family: "Bitstream Vera Sans Mono", "DejavVu Sans Mono", monospace;
-}
-
-.funcsynopsis, .funcprototype, .funcsynopsis-table {
- font-family: "Bitstream Vera Sans Mono", "DejavVu Sans Mono", monospace;
-}
-
-.type, .function {
- font-family: "Bitstream Vera Sans Mono", "DejavVu Sans Mono", monospace;
- font-weight: bold;
-}
-
-/*
- * vim:et:sw=2:ts=2:
- */