aboutsummaryrefslogtreecommitdiffstats
path: root/doc/man
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2010-02-08 17:02:56 -0500
committerW. Trevor King <wking@drexel.edu>2010-02-08 17:02:56 -0500
commit960565a8cc80f98d0a8bfa77029fbc78692ea1a1 (patch)
treef13eb760dcea8158d33aed1e4e17aacdcf36165a /doc/man
parent977eff5af10b50ba6e6edb6abc4f40804c418b12 (diff)
downloadbugseverywhere-960565a8cc80f98d0a8bfa77029fbc78692ea1a1.tar.gz
Consolidated Makefile and doc/man/module.mk. Incorperated doc/Makefile.
Now make sphinx builds the Sphinx HTML documentation (in doc/.build/html), and make clean cleans up everything. Having a separate module.mk was just making things confusing, so I took it out ;).
Diffstat (limited to 'doc/man')
-rw-r--r--doc/man/module.mk44
1 files changed, 0 insertions, 44 deletions
diff --git a/doc/man/module.mk b/doc/man/module.mk
deleted file mode 100644
index 1eb6955..0000000
--- a/doc/man/module.mk
+++ /dev/null
@@ -1,44 +0,0 @@
-# :vim: filetype=make : -*- makefile; coding: utf-8; -*-
-
-# doc/module.mk
-# Part of Bugs Everywhere, a distributed bug tracking system.
-#
-# Copyright (C) 2008-2010 Chris Ball <cjb@laptop.org>
-# Gianluca Montecchi <gian@grys.it>
-# W. Trevor King <wking@drexel.edu>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-# Makefile module for documentation
-
-MODULE_DIR := doc/man
-
-MANPAGES = be.1
-manpage_files = $(patsubst %,${MODULE_DIR}/%,${MANPAGES})
-
-GENERATED_FILES += ${manpage_files}
-
-
-.PHONY: doc
-doc: man
-
-build: doc
-
-
-.PHONY: man
-man: ${manpage_files}
-
-%.1: %.1.sgml
- docbook-to-man $< > $@