6 working_dir=@working_dir@
20 # --client-only directories
21 fd_subdirs = src scripts src/lib src/findlib src/filed \
22 @READLINE_SRC@ @BAT_DIR@ src/console @FD_PLUGIN_DIR@
24 # Non-client-only directores
25 subdirs = src/cats @DIRD_DIR@ @STORED_DIR@ src/tools
27 all_subdirs = ${fd_subdirs} ${@ALL_DIRS@} manpages
29 DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog
31 DIST_CFG = autoconf/aclocal.m4 autoconf/configure.in \
32 autoconf/config.h.in autoconf/acconfig.h autoconf/Make.common.in \
33 autoconf/install-sh autoconf/mkinstalldirs
35 doc_files = VERIFYING technotes ChangeLog README ReleaseNotes LICENSE \
38 MKDIR = $(srcdir)/autoconf/mkinstalldirs
39 LIBTOOL_DEPS = @LIBTOOL_DEPS@
41 #-------------------------------------------------------------------------
44 @for I in ${all_subdirs}; \
45 do (cd $$I; echo "==>Entering directory `pwd`"; \
46 $(MAKE) DESTDIR=$(DESTDIR) $@ || (echo ""; echo ""; echo " ====== Error in `pwd` ======"; \
47 echo ""; echo ""; exit 1;)); \
51 @for I in ${all_subdirs}; \
52 do (cd $$I; echo "==>Entering directory `pwd`"; $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1); done
55 @for I in ${fd_subdirs}; \
56 do (cd $$I; echo "==>Entering directory `pwd`"; \
57 $(MAKE) DESTDIR=$(DESTDIR) all || (echo ""; echo ""; echo " ====== Error in `pwd` ======"; \
58 echo ""; echo ""; exit 1;)); \
61 #-------------------------------------------------------------------------
63 autoconf/aclocal.m4: autoconf/configure.in autoconf/bacula-macros/* autoconf/gettext-macros/* autoconf/libtool/*
65 # Note, the following is needed in the above if ever any new macro is added.
66 # However, at the current time, the -I libtool causes the autoconf/aclocal.m4
67 # get messed up, so this is commented out
68 # cd autoconf && aclocal -I bacula-macros -I gettext-macros -I libtool
70 configure: autoconf/configure.in autoconf/aclocal.m4 autoconf/acconfig.h autoconf/config.h.in
72 ${RMF} config.cache config.log config.out config.status src/config.h
73 ${RMF} -r autoconf/autom4te.cache autom4te.cache
74 autoconf --prepend-include=$(srcdir)/autoconf \
75 autoconf/configure.in > configure
77 ${RMF} -r autoconf/autom4te.cache autom4te.cache
80 if test -x config.status; then config.status --recheck; \
81 else $(SHELL) configure; fi
83 autoconf/config.h.in: autoconf/configure.in autoconf/acconfig.h
85 ${RMF} config.cache config.log config.out config.status src/config.h
86 autoheader --prepend-include=$(srcdir)/autoconf \
87 autoconf/configure.in > autoconf/config.h.in
88 chmod 644 autoconf/config.h.in
90 libtool: Makefile $(LIBTOOL_DEPS)
91 $(SHELL) ./config.status --recheck
94 $(MKDIR) $(DESTDIR)$(sbindir)
95 $(MKDIR) $(DESTDIR)$(sysconfdir)
96 chmod 770 $(DESTDIR)$(sysconfdir)
97 -if test "x$(dir_user)" != "x" ; then \
98 chown $(dir_user) $(DESTDIR)$(sysconfdir); \
100 -if test "x$(dir_group)" != "x" ; then \
101 chgrp $(dir_group) $(DESTDIR)$(sysconfdir); \
103 $(MKDIR) $(DESTDIR)$(scriptdir)
104 $(MKDIR) $(DESTDIR)$(docdir)
105 $(MKDIR) $(DESTDIR)$(archivedir)
106 -if test ! -d $(DESTDIR)$(working_dir) ; then \
107 $(MKDIR) $(DESTDIR)$(working_dir); \
108 chmod 770 $(DESTDIR)$(working_dir); \
110 -if test "x$(dir_user)" != "x" ; then \
111 chown $(dir_user) $(DESTDIR)$(working_dir); \
113 -if test "x$(dir_group)" != "x" ; then \
114 chgrp $(dir_group) $(DESTDIR)$(working_dir); \
118 @for I in $(doc_files) ; do $(INSTALL_DATA) $$I $(DESTDIR)${docdir}; done
119 @for I in $(all_subdirs); do (cd $$I && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1); done
122 @for I in $(all_subdirs); do (cd $$I && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1); done
125 (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
127 install-autostart-dir:
128 (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
130 install-autostart-fd:
131 (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
133 install-autostart-sd:
134 (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
137 (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
139 uninstall-autostart-dir:
140 (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
142 uninstall-autostart-fd:
143 (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
145 uninstall-autostart-sd:
146 (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
148 Makefile: Makefile.in
150 && CONFIG_FILES=$(thisdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
153 $(SHELL) config.status
155 chmod 755 startmysql stopmysql bacula startit stopit btraceback; \
156 chmod 755 mtx-changer bconsole gconsole devel_bacula; \
157 chmod 755 dvd-handler)
160 chmod 755 create_bacula_database update_bacula_tables make_bacula_tables; \
161 chmod 755 grant_bacula_privileges drop_bacula_tables drop_bacula_database; \
162 chmod 755 make_catalog_backup delete_catalog_backup)
164 @for I in @DB_BACKENDS@ ; do \
166 chmod 755 create_$${I}_database update_$${I}_tables make_$${I}_tables; \
167 chmod 755 grant_$${I}_privileges drop_$${I}_tables drop_$${I}_database); \
170 (cd src/qt-console; \
171 chmod 755 install_conf_file build-depkgs-qt-console)
174 @for I in ${all_subdirs} ; \
175 do (cd $$I; echo "==>Entering directory `pwd`"; ${MAKE} $@ || exit 1); done
176 @(cd platforms; echo "==>Entering directory `pwd`"; ${MAKE} $@ || exit 1)
177 @$(RMF) *~ 1 2 3 core core.* config.guess console.log console.sum
178 @$(RMF) examples/1 examples/2 examples/devices/1 examples/devices/2
179 @$(RMF) -r autom4te.cache
180 @find . -name ".#*" -exec $(RMF) {} \;
183 # clean for distribution
185 @for I in $(all_subdirs); do (cd $$I && $(MAKE) $@ || exit 1); done
186 @for I in $(all_subdirs); do (cd $$I && $(RMF) startit stopit btraceback); done
187 @(cd $(srcdir) && $(RMF) *~ config.cache config.h config.log config.status config.out)
188 @(cd $(srcdir) && $(RMF) Makefile autoconf/Make.common)
189 @(cd platforms; echo "==>Entering directory `pwd`"; ${MAKE} $@ || exit 1)
190 @$(RMF) bacula fd Makefile startmysql stopmysql startit stopit btraceback
191 @$(RMF) bconsole gconsole
192 @$(RMF) *~ 1 2 3 core core.* config.guess console.log console.sum
193 @$(RMF) working/* kerns-*
194 @$(RMF) -rf txt diff src/python src/testprogs
198 @for I in $(all_subdirs); do (cd $$I && $(MAKE) $@ || exit 1); done
199 @for I in $(all_subdirs); do (cd $$I && $(RMF) startit stopit btraceback); done
200 @(cd $(srcdir) && $(RMF) *~ config.cache config.h config.log config.status config.out)
201 @(cd $(srcdir) && $(RMF) Makefile autoconf/Make.common)
202 @(cd platforms; echo "==>Entering directory `pwd`"; ${MAKE} $@ || exit 1)
203 @$(RMF) bacula fd Makefile startmysql stopmysql startit stopit btraceback
204 @$(RMF) bconsole gconsole
205 @$(RMF) *~ 1 2 3 core core.* config.guess console.log console.sum
210 mkdir ../$(VERNAME)/autoconf;
211 @for I in $(all_subdirs); do (cd $$I && $(MAKE) DESTDIR=$(DESTDIR) $@ || (echo "Failed to make distclean in $$I"; exit 0) ); done
214 $(CP) -p $(DIST) ../$(VERNAME);
215 $(CP) -p $(DIST_CFG) ../$(VERNAME)/autoconf;
216 @for I in $(all_subdirs); do (cd $$I && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1); done
218 distrib: configure autoconf/config.h.in distdirs distcopy
223 tar.gz: ../$(VERNAME).tar.gz
224 ../$(VERNAME).tar.gz:
225 (cd ..; tar cvf - $(VERNAME) | gzip -f9 > $(VERNAME).tar.gz)
227 tar.Z: ../$(VERNAME).tar.Z
229 (cd ..; tar cvf - $(VERNAME) | compress > $(VERNAME).tar.Z)
231 tar.bz2: ../$(VERNAME).tar.bz2
232 ../$(VERNAME).tar.bz2:
233 (cd ..; tar cvf - $(VERNAME) | bzip2 -f9 > $(VERNAME).tar.bz2)
236 uuencode ../$(VERNAME).tar.gz $(VERNAME).tar.gz > ../$(VERNAME).tgz.uu
238 # ------------------------------------------------------------------------