diff options
author | Stefan Reinauer <stepan@openbios.org> | 2006-10-17 20:58:47 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2006-10-17 20:58:47 +0000 |
commit | 0a3f60775baa549d559b9b89c4777efd43e0c81c (patch) | |
tree | 09dfa82d9155490af972bef4c03404d5e3fbc504 /util/optionlist/Makefile | |
parent | c1c3fdc79fab5b0d1572ea8f606c280b2df9676c (diff) | |
download | coreboot-0a3f60775baa549d559b9b89c4777efd43e0c81c.tar.xz |
add xsl stylesheet for wiki table generation
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2458 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/optionlist/Makefile')
-rw-r--r-- | util/optionlist/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/util/optionlist/Makefile b/util/optionlist/Makefile index c11c80dd2b..ffd1010ac1 100644 --- a/util/optionlist/Makefile +++ b/util/optionlist/Makefile @@ -1,7 +1,13 @@ -all: +all: html wiki + +html: ./mkOptionList.py @#saxon Options.xml Options.xsl >Options.html xsltproc Options.xsl Options.xml > Options.html +wiki: + ./mkOptionList.py + xsltproc Options-wiki.xsl Options.xml > Options.wiki + clean: - rm Options.xml Options.html + rm -rf Options.xml Options.html Options.wiki |