X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=docs%2FMakefile.in;h=baa3cf970f42f0e1b88653cd46948d3d2f8df129;hb=f8aeb0484307d4b3c6bb43edb054c0466dbd7a58;hp=cc383604ce58e7521e6e1eff40d81640c10e3aaa;hpb=988c058ca16fe5c4cd8d7adaf66c91606ef8112e;p=bacula%2Fdocs diff --git a/docs/Makefile.in b/docs/Makefile.in index cc383604..baa3cf97 100644 --- a/docs/Makefile.in +++ b/docs/Makefile.in @@ -16,10 +16,20 @@ thisdir = docs # Distribution variables # +de_dirs = manuals/de/catalog manuals/de/concepts manuals/de/console \ + manuals/de/developers manuals/de/install manuals/de/problems \ + manuals/de/utility + + en_dirs = manuals/en/catalog manuals/en/concepts manuals/en/console \ manuals/en/developers manuals/en/install manuals/en/problems \ manuals/en/utility +fr_dirs = manuals/fr/catalog manuals/fr/concepts manuals/fr/console \ + manuals/fr/developers manuals/fr/install manuals/fr/problems \ + manuals/fr/utility + + DIST = Makefile.in #------------------------------------------------------------------------- @@ -30,9 +40,25 @@ all: $(MAKE) $@ || (echo ""; echo ""; echo " ====== Error in `pwd` ======"; \ echo ""; echo "";)); \ done - (cd bacula-web; make) @echo "All manuals built ..." +bacula-web: + (cd bacula-web; make) + +french: + @for I in ${fr_dirs}; \ + do (cd $$I; echo "==>Entering directory `pwd`"; \ + $(MAKE) all || (echo ""; echo ""; echo " ====== Error in `pwd` ======"; \ + echo ""; echo "";)); \ + done + +german: + @for I in ${de_dirs}; \ + do (cd $$I; echo "==>Entering directory `pwd`"; \ + $(MAKE) all || (echo ""; echo ""; echo " ====== Error in `pwd` ======"; \ + echo ""; echo "";)); \ + done + configure: autoconf/configure.in autoconf/aclocal.m4 autoconf/acconfig.h cd $(srcdir); @@ -66,10 +92,8 @@ $(basedir)/$(VERNAME).lsm: LSM.in $(srcdir)/../autoconf/Make.common.in $(srcdir) clean: $(RMF) *~ 1 2 3 bacula-doc*.tar.gz - (cd manual-de; make clean) - (cd manual-fr; make clean) (cd bacula-web; make clean) - @for I in ${en_dirs}; \ + @for I in ${en_dirs} ${fr_dirs} ${de_dirs}; \ do (cd $$I; echo "==>Entering directory `pwd`"; ${MAKE} $@ || exit 1); done @@ -80,10 +104,8 @@ distclean: clean $(RMF) -r CVS html-manual/CVS home-page/CVS techlogs/CVS $(RMF) -rf autom4te.cache bacula-doc-* config.log config.out $(RMF) -f config.status kernsconfig - (cd manual-de; make distclean) - (cd manual-fr; make distclean) (cd bacula-web; make distclean) - @for I in ${en_dirs}; \ + @for I in ${en_dirs} ${fr_dirs} ${de_dirs}; \ do (cd $$I; echo "==>Entering directory `pwd`"; ${MAKE} $@ || exit 1); done