X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=docs%2FMakefile.in;h=43771b19b2bd44e5bbc65c78c79b15f3ea69a364;hb=2a4cb4ab916d95723a246840969e65852f8df183;hp=28b36dda0ffe348e9d912762f199a573014cae1f;hpb=2127f27758bf7f3f0aa4d916a928ca98eb6b9bcf;p=bacula%2Fdocs diff --git a/docs/Makefile.in b/docs/Makefile.in index 28b36dda..43771b19 100644 --- a/docs/Makefile.in +++ b/docs/Makefile.in @@ -16,29 +16,32 @@ 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 +de_dirs = manuals/de/console manuals/de/developers manuals/de/main \ + manuals/de/misc 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 +en_dirs = manuals/en/console manuals/en/developers manuals/en/main \ + manuals/en/misc 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 +es_dirs = manuals/es/console manuals/es/developers manuals/es/main \ + manuals/es/misc manuals/es/problems manuals/es/utility +fr_dirs = manuals/fr/console manuals/fr/developers manuals/fr/main \ + manuals/fr/misc manuals/fr/problems manuals/fr/utility + +all_dirs = ${de_dirs} ${en_dirs} ${es_dirs} ${fr_dirs} DIST = Makefile.in #------------------------------------------------------------------------- +en: all + all: @for I in ${en_dirs}; \ do (cd $$I; echo "==>Entering directory `pwd`"; \ $(MAKE) $@ || (echo ""; echo ""; echo " ====== Error in `pwd` ======"; \ - echo ""; echo "";)); \ + echo ""; echo ""; exit 1;)); \ done @echo "All manuals built ..." @@ -51,7 +54,7 @@ french: @for I in ${fr_dirs}; \ do (cd $$I; echo "==>Entering directory `pwd`"; \ $(MAKE) all || (echo ""; echo ""; echo " ====== Error in `pwd` ======"; \ - echo ""; echo "";)); \ + echo ""; echo ""; exit 1;)); \ done de: german @@ -60,7 +63,16 @@ german: @for I in ${de_dirs}; \ do (cd $$I; echo "==>Entering directory `pwd`"; \ $(MAKE) all || (echo ""; echo ""; echo " ====== Error in `pwd` ======"; \ - echo ""; echo "";)); \ + echo ""; echo ""; exit 1;)); \ + done + +es: spanish + +spanish: + @for I in ${es_dirs}; \ + do (cd $$I; echo "==>Entering directory `pwd`"; \ + $(MAKE) all || (echo ""; echo ""; echo " ====== Error in `pwd` ======"; \ + echo ""; echo ""; exit 1;)); \ done @@ -97,9 +109,16 @@ $(basedir)/$(VERNAME).lsm: LSM.in $(srcdir)/../autoconf/Make.common.in $(srcdir) clean: $(RMF) *~ 1 2 3 bacula-doc*.tar.gz (cd bacula-web; make clean) - @for I in ${en_dirs} ${fr_dirs} ${de_dirs}; \ + find . -type l -exec rm {} \; + @for I in ${all_dirs}; \ do (cd $$I; echo "==>Entering directory `pwd`"; ${MAKE} $@ || exit 1); done +mini-clean: + $(RMF) *~ 1 2 3 bacula-doc*.tar.gz + (cd bacula-web; make clean) + find . -type l -exec rm {} \; + @for I in ${all_dirs}; \ + do (cd $$I; echo "==>Entering directory `pwd`"; ${MAKE} $@ || exit 1); done realclean: clean @@ -109,7 +128,7 @@ distclean: clean $(RMF) -rf autom4te.cache bacula-doc-* config.log config.out $(RMF) -f config.status kernsconfig (cd bacula-web; make distclean) - @for I in ${en_dirs} ${fr_dirs} ${de_dirs}; \ + @for I in ${all_dirs}; \ do (cd $$I; echo "==>Entering directory `pwd`"; ${MAKE} $@ || exit 1); done