diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-07 23:50:01 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-07 23:50:01 +0000 |
commit | 1dc52a2bad8738c62ac5bc9689c09600eb7b1269 (patch) | |
tree | eff9a29cea702b2dac3038ce9d7aef25fc8ce654 /Makefile | |
parent | 4d6ceae2e171f93941c034f3fd0b97bb79455f43 (diff) | |
download | mandoc-1dc52a2bad8738c62ac5bc9689c09600eb7b1269.tar.gz |
Fixed installation routine.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -72,20 +72,20 @@ index.html: index.7 mdocml.css ./mdocml -W -fhtml -e -o $@ index.7 index.xml: index.7 mdocml.css - ./mdocml -W -fhtml -e -o $@ index.7 + ./mdocml -W -o $@ index.7 mdocml.html: mdocml.1 mdocml.css ./mdocml -W -fhtml -e -o $@ mdocml.1 install-www: www dist install -m 0644 mdocml.tgz $(PREFIX)/mdocml-$(VERSION).tgz - ( cd $(PREFIX)/ && ln -sf mdocml-$(VERSION).tgz mdocml.tgz ) + install -m 0644 mdocml.tgz $(PREFIX)/mdocml.tgz install -m 0644 $(HTML) $(XML) $(PREFIX)/ mdocml.tgz: $(INSTALL) mkdir -p .dist/mdocml/mdocml-$(VERSION)/ install -m 0644 $(INSTALL) .dist/mdocml/mdocml-$(VERSION)/ - ( cd .dist/mdocml/ && tar zcf ../mdocml.tgz mdocml-$(VERSION)/ ) + ( cd .dist/mdocml/ && tar zcf ../../mdocml.tgz mdocml-$(VERSION)/ ) rm -rf .dist/ llib-lmdocml.ln: mdocml.ln libmdocml.ln html.ln xml.ln roff.ln ml.ln mlg.ln compat.ln tokens.ln literals.ln |