summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorWichert Akkerman <wakkerma@debian.org>2002-02-02 16:28:28 +0000
committerWichert Akkerman <wakkerma@debian.org>2002-02-02 16:28:28 +0000
commit95fae1b0c4e7d73d3cef494e5d91f701531ea861 (patch)
treeb658db2f249de731702a3a79a6ff67d038310017 /doc
parentf59a3036c3c898e24cf88b017959645912d019b5 (diff)
downloaddpkg-95fae1b0c4e7d73d3cef494e5d91f701531ea861.tar.gz
Remove framework for subdirectories
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.in18
1 files changed, 5 insertions, 13 deletions
diff --git a/doc/Makefile.in b/doc/Makefile.in
index 30055f203..c98504809 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -2,21 +2,19 @@ VPATH = @srcdir@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
-SUBDIRS =
-
include ../Makefile.conf
ifeq (@USE_SGML_DOC@, true)
-all: internals.html/index.html all-recursive
+all: internals.html/index.html
else
-all: all-recursive
+all:
endif
-clean: clean-recursive
+clean:
$(RM) $(srcdir)/manuals-version
$(RM) -rf internals.html/
-distclean: clean distclean-recursive
+distclean: clean
$(RM) Makefile
install: install-doc
@@ -29,7 +27,7 @@ manuals-version: $(top_srcdir)/version-nr
internals.html/index.html: internals.sgml manuals-version
debiandoc2html -n -D. $<
-install-doc: install-doc-recursive
+install-doc:
ifeq (@USE_SGML_DOC@, true)
$(mkinstalldirs) $(DESTDIR)$(docdir)/internals/
set -e ; for i in internals.html/* ; do \
@@ -43,12 +41,6 @@ endif
done
$(INSTALL_DATA) $(top_srcdir)/COPYING $(DESTDIR)$(copyingfile)
-all-recursive install-recursive install-doc-recursive clean-recursive distclean-recursive:
- set -e ; target=`echo $@ | $(SED) s/-recursive//`; \
- for s in $(SUBDIRS) ; do \
- $(MAKE) $(MFLAGS) -C $$s $$target ; \
- done;
.PHONY: all clean distclean install install-doc
-.PHONY: all-recursive clean-recursive distclean-recursive install-recursive
.PHONY: install-doc-recursive