xsf-docs: Changes to 'master'
Makefile | 9 ++++++---
index.mdwn | 10 +++++++++-
2 files changed, 15 insertions(+), 4 deletions(-)
New commits:
commit ccca5296481e7916057d5b2557a2d726dbeae5c5
Author: Cyril Brulebois <kibi@debian.org>
Date: Wed Dec 1 22:06:18 2010 +0100
Document how we appreciate feedback.
diff --git a/index.mdwn b/index.mdwn
index 966d944..24e4f5d 100644
--- a/index.mdwn
+++ b/index.mdwn
@@ -4,3 +4,10 @@
* [How to report bugs](howtos/report-bugs.html)
* [How to use GDB](howtos/use-gdb.html)
+
+## Feedback
+
+ * Sources for those documents are available on
+ [git.debian.org](http://git.debian.org/?p=pkg-xorg/debian/xsf-docs.git).
+ * Patches, suggestions, flames, etc. are welcome, using the
+ [debian-x](http://lists.debian.org/debian-x/) mailing list.
commit a29508790e4dbb7c97349d1c1bb636da47f21e48
Author: Cyril Brulebois <kibi@debian.org>
Date: Wed Dec 1 21:59:59 2010 +0100
Add a link to report-bugs from the index.
diff --git a/index.mdwn b/index.mdwn
index bb676e7..966d944 100644
--- a/index.mdwn
+++ b/index.mdwn
@@ -2,4 +2,5 @@
## Howtos
-[How to use GDB](howtos/use-gdb.html)
+ * [How to report bugs](howtos/report-bugs.html)
+ * [How to use GDB](howtos/use-gdb.html)
commit 4023140982f45230799133d0ded1193eff092c93
Author: Cyril Brulebois <kibi@debian.org>
Date: Wed Dec 1 21:59:43 2010 +0100
Make it possible to build either html or pdf.
diff --git a/Makefile b/Makefile
index 347d9e4..3ab3881 100644
--- a/Makefile
+++ b/Makefile
@@ -9,8 +9,11 @@ pdf_files = $(patsubst %.mdwn,%.pdf,$(mdwn_pages))
MDWN_TO_HTML = ./mdwn2html
HTML_TO_PDF = wkhtmltopdf
-all: $(html_pages) $(pdf_files)
- @echo "All done."
+all: html pdf
+
+html: $(html_pages)
+
+pdf: $(pdf_files)
%.html: %.mdwn $(MDWN_TO_HTML)
$(MDWN_TO_HTML) $< $@
@@ -23,4 +26,4 @@ clean:
rm -f $(html_pages) $(pdf_files)
-.PHONY: clean
+.PHONY: clean html pdf all
Reply to: