X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fplatforms%2FMakefile.in;h=79101b07fd9b31bf25e53ab48335bcf81d5953c9;hb=97b6a33ed7fa37e0a0d5f1d9776cb92b8437ee01;hp=a0584c5f4cb3ce2452d5baf31837760d8849e60e;hpb=c7d894ed8e27505ba86255131eaf22658ffaa574;p=bacula%2Fbacula diff --git a/bacula/platforms/Makefile.in b/bacula/platforms/Makefile.in index a0584c5f4c..79101b07fd 100644 --- a/bacula/platforms/Makefile.in +++ b/bacula/platforms/Makefile.in @@ -11,8 +11,8 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL = @INSTALL@ -SUBDIRS = freebsd redhat solaris unknown openbsd irix gentoo \ - darwin aix bsdi mandrake +SUBDIRS = freebsd redhat solaris unknown openbsd osx irix gentoo \ + debian darwin aix bsdi mandrake slackware alpha ubuntu MAKE = make @@ -27,7 +27,13 @@ all: done -install: install-autostart-dir install-autostart-fd install-autostart-sd +install: install-autostart + +install-autostart: + @if test x$(DISTNAME) != x ; then \ + (cd $(DISTNAME); \ + $(MAKE) DESTDIR=$(DESTDIR) "DISTNAME=$(DISTNAME)" "DISTVER=$(DISTVER)" $@) \ + fi install-autostart-dir: @if test x$(DISTNAME) != x ; then \ @@ -47,7 +53,13 @@ install-autostart-sd: $(MAKE) DESTDIR=$(DESTDIR) "DISTNAME=$(DISTNAME)" "DISTVER=$(DISTVER)" $@) \ fi -uninstall: uninstall-autostart-dir uninstall-autostart-fd uninstall-autrun-sd +uninstall: uninstall-autostart + +uninstall-autostart: + @if test x$(DISTNAME) != x ; then \ + (cd $(DISTNAME); \ + $(MAKE) DESTDIR=$(DESTDIR) "DISTNAME=$(DISTNAME)" "DISTVER=$(DISTVER)" $@) \ + fi uninstall-autostart-dir: @if test x$(DISTNAME) != x ; then \ @@ -75,14 +87,20 @@ clean: (cd $${subdir}; $(MAKE) clean) \ fi; \ done - rm -f 1 2 3 + @rm -f 1 2 3 distclean: @rm -f Makefile - @rm -rf CVS @for subdir in ${SUBDIRS}; do \ if [ -f $${subdir}/Makefile ]; then \ (cd $${subdir}; $(MAKE) distclean) \ fi; \ - (cd $${subdir}; rm -rf CVS) \ + done + +devclean: + @rm -f Makefile + @for subdir in ${SUBDIRS}; do \ + if [ -f $${subdir}/Makefile ]; then \ + (cd $${subdir}; $(MAKE) devclean) \ + fi; \ done