X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=docs%2FMakefile.in;h=ed5217684edb38364dc64f207139711a112bc336;hb=67446827162d5c75817a3905c03716190029f5f3;hp=1005e13f4f8853c8b366f242389517b0947e8683;hpb=5f26f202312d725575af3b03d2744a7dcbc4af71;p=bacula%2Fdocs diff --git a/docs/Makefile.in b/docs/Makefile.in index 1005e13f..ed521768 100644 --- a/docs/Makefile.in +++ b/docs/Makefile.in @@ -16,45 +16,63 @@ 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 - (cd bacula-web; make) @echo "All manuals built ..." +bacula-web: + (cd bacula-web; make) + +fr: french + french: @for I in ${fr_dirs}; \ do (cd $$I; echo "==>Entering directory `pwd`"; \ - $(MAKE) $@ || (echo ""; echo ""; echo " ====== Error in `pwd` ======"; \ - echo ""; echo "";)); \ + $(MAKE) all || (echo ""; echo ""; echo " ====== Error in `pwd` ======"; \ + echo ""; echo ""; exit 1;)); \ done +de: german + german: @for I in ${de_dirs}; \ do (cd $$I; echo "==>Entering directory `pwd`"; \ - $(MAKE) $@ || (echo ""; echo ""; echo " ====== Error in `pwd` ======"; \ - echo ""; echo "";)); \ + $(MAKE) all || (echo ""; echo ""; echo " ====== Error in `pwd` ======"; \ + 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 @@ -91,7 +109,7 @@ $(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}; \ + @for I in ${all_dirs}; \ do (cd $$I; echo "==>Entering directory `pwd`"; ${MAKE} $@ || exit 1); done @@ -103,7 +121,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