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@ @TRAY_MONITOR_DIR@ @WX_DIR@ \
23 src/console @FD_PLUGIN_DIR@
25 # Non-client-only directores
26 subdirs = src/cats @DIRD_DIR@ @STORED_DIR@ src/tools
28 all_subdirs = ${fd_subdirs} ${@ALL_DIRS@} manpages
30 DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog
32 DIST_CFG = autoconf/aclocal.m4 autoconf/configure.in \
33 autoconf/config.h.in autoconf/acconfig.h autoconf/Make.common.in \
34 autoconf/install-sh autoconf/mkinstalldirs
36 doc_files = VERIFYING technotes ChangeLog README ReleaseNotes LICENSE \
39 MKDIR = $(srcdir)/autoconf/mkinstalldirs
40 LIBTOOL_DEPS = @LIBTOOL_DEPS@
42 #-------------------------------------------------------------------------
45 @for I in ${all_subdirs}; \
46 do (cd $$I; echo "==>Entering directory `pwd`"; \
47 $(MAKE) DESTDIR=$(DESTDIR) $@ || (echo ""; echo ""; echo " ====== Error in `pwd` ======"; \
48 echo ""; echo ""; exit 1;)); \
52 @for I in ${all_subdirs}; \
53 do (cd $$I; echo "==>Entering directory `pwd`"; $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1); done
56 @for I in ${fd_subdirs}; \
57 do (cd $$I; echo "==>Entering directory `pwd`"; \
58 $(MAKE) DESTDIR=$(DESTDIR) all || (echo ""; echo ""; echo " ====== Error in `pwd` ======"; \
59 echo ""; echo ""; exit 1;)); \
62 #-------------------------------------------------------------------------
64 autoconf/aclocal.m4: autoconf/configure.in autoconf/bacula-macros/* autoconf/gettext-macros/* autoconf/libtool/*
66 # Note, the following is needed in the above if ever any new macro is added.
67 # However, at the current time, the -I libtool causes the autoconf/aclocal.m4
68 # get messed up, so this is commented out
69 # cd autoconf && aclocal -I bacula-macros -I gettext-macros -I libtool
71 configure: autoconf/configure.in autoconf/aclocal.m4 autoconf/acconfig.h autoconf/config.h.in
73 ${RMF} config.cache config.log config.out config.status src/config.h
74 ${RMF} -r autoconf/autom4te.cache autom4te.cache
75 autoconf --prepend-include=$(srcdir)/autoconf \
76 autoconf/configure.in > configure
78 ${RMF} -r autoconf/autom4te.cache autom4te.cache
81 if test -x config.status; then config.status --recheck; \
82 else $(SHELL) configure; fi
84 autoconf/config.h.in: autoconf/configure.in autoconf/acconfig.h
86 ${RMF} config.cache config.log config.out config.status src/config.h
87 autoheader --prepend-include=$(srcdir)/autoconf \
88 autoconf/configure.in > autoconf/config.h.in
89 chmod 644 autoconf/config.h.in
91 libtool: Makefile $(LIBTOOL_DEPS)
92 $(SHELL) ./config.status --recheck
95 $(MKDIR) $(DESTDIR)$(sbindir)
96 $(MKDIR) $(DESTDIR)$(sysconfdir)
97 chmod 770 $(DESTDIR)$(sysconfdir)
98 -if test "x$(dir_user)" != "x" ; then \
99 chown $(dir_user) $(DESTDIR)$(sysconfdir); \
101 -if test "x$(dir_group)" != "x" ; then \
102 chgrp $(dir_group) $(DESTDIR)$(sysconfdir); \
104 $(MKDIR) $(DESTDIR)$(scriptdir)
105 $(MKDIR) $(DESTDIR)$(docdir)
106 $(MKDIR) $(DESTDIR)$(archivedir)
107 -if test ! -d $(DESTDIR)$(working_dir) ; then \
108 $(MKDIR) $(DESTDIR)$(working_dir); \
109 chmod 770 $(DESTDIR)$(working_dir); \
111 -if test "x$(dir_user)" != "x" ; then \
112 chown $(dir_user) $(DESTDIR)$(working_dir); \
114 -if test "x$(dir_group)" != "x" ; then \
115 chgrp $(dir_group) $(DESTDIR)$(working_dir); \
119 $(MKDIR) $(DESTDIR)/usr/share/pixmaps
120 $(MKDIR) $(DESTDIR)/usr/share/gnome/apps/System
121 $(MKDIR) $(DESTDIR)/usr/share/applications
122 $(MKDIR) $(DESTDIR)/etc/security/console.apps
123 $(MKDIR) $(DESTDIR)/etc/pam.d
125 install-menu: gnomedirs
126 ${INSTALL_DATA} scripts/bacula.png $(DESTDIR)/usr/share/pixmaps/bacula.png
127 ${INSTALL_DATA} scripts/bacula.desktop.gnome1 $(DESTDIR)/usr/share/gnome/apps/System/bacula.desktop
128 ${INSTALL_DATA} scripts/bacula.desktop.gnome2 $(DESTDIR)/usr/share/applications/bacula.desktop
130 install-menu-xsu: gnomedirs
131 ${INSTALL_DATA} scripts/bacula.png $(DESTDIR)/usr/share/pixmaps/bacula.png
132 ${INSTALL_DATA} scripts/bacula.desktop.gnome1.xsu $(DESTDIR)/usr/share/gnome/apps/System/bacula.desktop
133 ${INSTALL_DATA} scripts/bacula.desktop.gnome2.xsu $(DESTDIR)/usr/share/applications/bacula.desktop
135 install-menu-consolehelper: gnomedirs
136 ${INSTALL_DATA} scripts/bacula.png $(DESTDIR)/usr/share/pixmaps/bacula.png
137 ${INSTALL_DATA} scripts/bacula.desktop.gnome1.consolehelper $(DESTDIR)/usr/share/gnome/apps/System/bacula.desktop
138 ${INSTALL_DATA} scripts/bacula.desktop.gnome2.consolehelper $(DESTDIR)/usr/share/applications/bacula.desktop
139 ${INSTALL_DATA} scripts/gnome-console.console_apps $(DESTDIR)/etc/security/console.apps/gnome-console
140 ${INSTALL_DATA} scripts/gnome-console.pamd $(DESTDIR)/etc/pam.d/gnome-console
141 ln -s $(DESTDIR)/usr/bin/consolehelper $(DESTDIR)/usr/bin/gnome-console
144 @for I in $(doc_files) ; do $(INSTALL_DATA) $$I $(DESTDIR)${docdir}; done
145 @for I in $(all_subdirs); do (cd $$I && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1); done
148 @for I in $(all_subdirs); do (cd $$I && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1); done
151 (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
153 install-autostart-dir:
154 (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
156 install-autostart-fd:
157 (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
159 install-autostart-sd:
160 (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
163 (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
165 uninstall-autostart-dir:
166 (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
168 uninstall-autostart-fd:
169 (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
171 uninstall-autostart-sd:
172 (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
175 $(RMF) $(DESTDIR)/usr/share/pixmaps/bacula.png
176 $(RMF) $(DESTDIR)/usr/share/gnome/apps/System/bacula.desktop
177 $(RMF) $(DESTDIR)/usr/share/applications/bacula.desktop
179 uninstall-menu-consolehelper:
180 $(RMF) $(DESTDIR)/usr/share/pixmaps/bacula.png
181 $(RMF) $(DESTDIR)/usr/share/gnome/apps/System/bacula.desktop
182 $(RMF) $(DESTDIR)/usr/share/applications/bacula.desktop
183 $(RMF) $(DESTDIR)/etc/security/console.apps/gnome-console
184 $(RMF) $(DESTDIR)/etc/pam.d/gnome-console
185 $(RMF) $(DESTDIR)/usr/bin/gnome-console
187 Makefile: Makefile.in
189 && CONFIG_FILES=$(thisdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
192 $(SHELL) config.status
194 chmod 755 startmysql stopmysql bacula startit stopit btraceback; \
195 chmod 755 mtx-changer bconsole gconsole devel_bacula; \
196 chmod 755 dvd-handler)
199 chmod 755 create_bacula_database update_bacula_tables make_bacula_tables; \
200 chmod 755 grant_bacula_privileges drop_bacula_tables drop_bacula_database; \
201 chmod 755 make_catalog_backup delete_catalog_backup)
203 @for I in @DB_BACKENDS@ ; do \
205 chmod 755 create_$${I}_database update_$${I}_tables make_$${I}_tables; \
206 chmod 755 grant_$${I}_privileges drop_$${I}_tables drop_$${I}_database); \
209 (cd src/qt-console; \
210 chmod 755 install_conf_file build-depkgs-qt-console)
213 @for I in ${all_subdirs} ; \
214 do (cd $$I; echo "==>Entering directory `pwd`"; ${MAKE} $@ || exit 1); done
215 @(cd platforms; echo "==>Entering directory `pwd`"; ${MAKE} $@ || exit 1)
216 @$(RMF) *~ 1 2 3 core core.* config.guess console.log console.sum
217 @$(RMF) examples/1 examples/2 examples/devices/1 examples/devices/2
218 @$(RMF) -r autom4te.cache
219 @find . -name ".#*" -exec $(RMF) {} \;
222 # clean for distribution
224 @for I in $(all_subdirs); do (cd $$I && $(MAKE) $@ || exit 1); done
225 @for I in $(all_subdirs); do (cd $$I && $(RMF) startit stopit btraceback); done
226 @(cd $(srcdir) && $(RMF) *~ config.cache config.h config.log config.status config.out)
227 @(cd $(srcdir) && $(RMF) Makefile autoconf/Make.common)
228 @(cd platforms; echo "==>Entering directory `pwd`"; ${MAKE} $@ || exit 1)
229 @$(RMF) bacula fd Makefile startmysql stopmysql startit stopit btraceback
230 @$(RMF) bconsole gconsole
231 @$(RMF) *~ 1 2 3 core core.* config.guess console.log console.sum
232 @$(RMF) working/* kerns-*
233 @$(RMF) -rf txt diff src/python src/testprogs
237 @for I in $(all_subdirs); do (cd $$I && $(MAKE) $@ || exit 1); done
238 @for I in $(all_subdirs); do (cd $$I && $(RMF) startit stopit btraceback); done
239 @(cd $(srcdir) && $(RMF) *~ config.cache config.h config.log config.status config.out)
240 @(cd $(srcdir) && $(RMF) Makefile autoconf/Make.common)
241 @(cd platforms; echo "==>Entering directory `pwd`"; ${MAKE} $@ || exit 1)
242 @$(RMF) bacula fd Makefile startmysql stopmysql startit stopit btraceback
243 @$(RMF) bconsole gconsole
244 @$(RMF) *~ 1 2 3 core core.* config.guess console.log console.sum
249 mkdir ../$(VERNAME)/autoconf;
250 @for I in $(all_subdirs); do (cd $$I && $(MAKE) DESTDIR=$(DESTDIR) $@ || (echo "Failed to make distclean in $$I"; exit 0) ); done
253 $(CP) -p $(DIST) ../$(VERNAME);
254 $(CP) -p $(DIST_CFG) ../$(VERNAME)/autoconf;
255 @for I in $(all_subdirs); do (cd $$I && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1); done
257 distrib: configure autoconf/config.h.in distdirs distcopy
262 tar.gz: ../$(VERNAME).tar.gz
263 ../$(VERNAME).tar.gz:
264 (cd ..; tar cvf - $(VERNAME) | gzip -f9 > $(VERNAME).tar.gz)
266 tar.Z: ../$(VERNAME).tar.Z
268 (cd ..; tar cvf - $(VERNAME) | compress > $(VERNAME).tar.Z)
270 tar.bz2: ../$(VERNAME).tar.bz2
271 ../$(VERNAME).tar.bz2:
272 (cd ..; tar cvf - $(VERNAME) | bzip2 -f9 > $(VERNAME).tar.bz2)
275 uuencode ../$(VERNAME).tar.gz $(VERNAME).tar.gz > ../$(VERNAME).tgz.uu
277 # ------------------------------------------------------------------------