summaryrefslogtreecommitdiffstats
path: root/doc/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'doc/Makefile.in')
-rw-r--r--doc/Makefile.in18
1 files changed, 10 insertions, 8 deletions
diff --git a/doc/Makefile.in b/doc/Makefile.in
index 9857cd3..10fc2eb 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -27,17 +27,19 @@ tests TAGS dep depend:
(cd $$d && $(MAKE) $@) || exit 1; \
done
-$(docdir):
- mkdir $@ && chmod 755 $@
-
-install-doc: $(docdir)
- @@SETX@; for d in $(SUBDIRS); do \
- (cd $$d && $(MAKE) $@) || exit 1; \
+install-doc:
+ @if test -d $(DOCDIR) ; then \
+ :; \
+ else \
+ mkdir $(DOCDIR) && chmod 755 $(DOCDIR); \
+ fi
+ @@SETX@; for d in $(SUBDIRS); do \
+ (cd $$d && $(MAKE) $@) || exit 1; \
done
uninstall-doc:
- @@SETX@; for d in $(SUBDIRS); do \
- (cd $$d && $(MAKE) $@) || exit 1; \
+ @@SETX@; for d in $(SUBDIRS); do \
+ (cd $$d && $(MAKE) $@) || exit 1; \
done
.PHONY: all lib progs test _test install uninstall dep depend clean \