diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-04-20 16:57:58 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@redhat.com> | 2002-04-20 16:57:58 +0000 |
commit | 8310199c1237567c4c55fb9df3f5ce863650a49e (patch) | |
tree | ded82885362f126e7e701e3f807ff8585a504352 /xembed/Makefile | |
download | xdg-specs-8310199c1237567c4c55fb9df3f5ce863650a49e.tar.xz |
Initial revision
Diffstat (limited to 'xembed/Makefile')
-rw-r--r-- | xembed/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/xembed/Makefile b/xembed/Makefile new file mode 100644 index 0000000..030626c --- /dev/null +++ b/xembed/Makefile @@ -0,0 +1,13 @@ +all: html-build.stamp xembed-spec.ps + +html-build.stamp: xembed-spec.xml + rm -rf html && mkdir html && \ + cd html && \ + docbook2html ../xembed-spec.xml && \ + touch ../html-build.stamp + +xembed-spec.ps: xembed-spec.xml + docbook2ps ./xembed-spec.xml + +clean: rm -rf html-build.stamp html xembed-spec.ps + |