]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/win32/Makefile
Detect the case where logfiles but no databases are being restored.
[bacula/bacula] / bacula / src / win32 / Makefile
index cf91859bb203ce2f52da47a34ccaf2ddcaf2f38a..2b83bdc02b981c3ddf9ddac1745dedf64c42b0ae 100644 (file)
@@ -1,6 +1,6 @@
 ECHO_CMD=@
 
-DIRS=  dll \
+DIRS=  lib \
        cats \
        filed \
        filed/plugins \
@@ -9,16 +9,33 @@ DIRS= dll \
        console \
        wx-console \
        tools \
-       scripts \
-       installer
+       scripts
 
-.PHONY: $(DIRS) clean all Makefile.inc
+.PHONY: $(DIRS) clean all Makefile.inc installer newinstaller
 
-all: Makefile.inc $(DIRS)
+all: Makefile.inc $(DIRS) installer newinstaller
 
-clean: $(DIRS)
+clean: $(DIRS) installer newinstaller
        $(ECHO_CMD)-rm -rf release
 
+newinstaller:
+       @if test -f Makefile.inc; then \
+          if $(MAKE) -C $@ $(MAKECMDGOALS); then \
+               echo "\n===== Make of $@ succeeded =====\n\n" ; \
+          else  \
+               echo "\n!!!!! Make of $@ failed !!!!!\n\n" ; \
+          fi ; \
+       fi
+
+installer:
+       @if test -f Makefile.inc; then \
+          if $(MAKE) -C $@ $(MAKECMDGOALS); then \
+               echo "\n===== Make of $@ succeeded =====\n\n" ; \
+          else  \
+               echo "\n!!!!! Make of $@ failed !!!!!\n\n" ; \
+          fi ; \
+       fi
+
 $(DIRS):
        @if test -f Makefile.inc; then \
           if $(MAKE) -C $@ $(MAKECMDGOALS); then \