diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-11-23 19:47:15 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-11-23 19:47:15 +0100 |
commit | 3e1453121fde0696c20b995f54d6448fcfe77aa5 (patch) | |
tree | ccfe773f31901f676c2e543bdf8f6468a47a27f9 /basedir | |
parent | 391c910c4f5e795a205b7eecf22298fee6c0ebef (diff) | |
download | xdg-specs-3e1453121fde0696c20b995f54d6448fcfe77aa5.tar.xz |
build-sys: add minimal Makefile
Make it easier to work on the basedir specification: add a minimal
Makefile invoking xmlto.
Diffstat (limited to 'basedir')
-rw-r--r-- | basedir/.gitignore | 1 | ||||
-rw-r--r-- | basedir/Makefile | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/basedir/.gitignore b/basedir/.gitignore new file mode 100644 index 0000000..126e056 --- /dev/null +++ b/basedir/.gitignore @@ -0,0 +1 @@ +basedir-spec.html diff --git a/basedir/Makefile b/basedir/Makefile new file mode 100644 index 0000000..35a73df --- /dev/null +++ b/basedir/Makefile @@ -0,0 +1,7 @@ +all: basedir-spec.html + +%.html: %.xml + xmlto html-nochunks $< + +clean: + rm -f basedir-spec.html |