]> git.sur5r.net Git - bacula/bacula/blob - bacula/Makefile.in
make stop after first error
[bacula/bacula] / bacula / Makefile.in
1
2 # Master Makefile
3 #
4 @MCOMMON@
5
6 working_dir=@working_dir@
7 dir_group=@dir_group@
8 dir_user=@dir_user@
9
10 srcdir =        @srcdir@
11 VPATH =         @srcdir@
12 .PATH:          @srcdir@
13 topdir = .
14 thisdir = .
15
16
17 first_rule: all
18 dummy:
19
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@
23
24 # Non-client-only directores
25 subdirs =    src/cats @DIRD_DIR@ @STORED_DIR@ src/tools
26
27 all_subdirs = ${fd_subdirs} ${@ALL_DIRS@} manpages
28
29 DIST =  INSTALL README.configure configure Makefile Makefile.in ChangeLog
30
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
34
35 doc_files = VERIFYING technotes ChangeLog README ReleaseNotes LICENSE \
36             INSTALL
37
38 MKDIR = $(srcdir)/autoconf/mkinstalldirs
39 LIBTOOL_DEPS = @LIBTOOL_DEPS@
40
41 #-------------------------------------------------------------------------
42
43 all: Makefile
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 ""; false ) || false) || exit 1; \
48         done
49
50 depend:
51         @for I in ${all_subdirs}; \
52           do (cd $$I; echo "==>Entering directory `pwd`"; $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1); done
53         
54 bacula-fd: Makefile        
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 ""; false ) || false) || exit 1; \
59         done
60
61 #-------------------------------------------------------------------------
62
63 autoconf/aclocal.m4: autoconf/configure.in autoconf/bacula-macros/* autoconf/gettext-macros/* autoconf/libtool/*
64
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
69
70 configure: autoconf/configure.in autoconf/aclocal.m4 autoconf/acconfig.h autoconf/config.h.in
71         cd $(srcdir);
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
76         chmod 755 configure
77         ${RMF} -r autoconf/autom4te.cache autom4te.cache
78
79 config.status:
80         if test -x config.status; then config.status --recheck; \
81         else $(SHELL) configure; fi
82
83 autoconf/config.h.in: autoconf/configure.in autoconf/acconfig.h
84         cd $(srcdir);
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
89
90 libtool: Makefile $(LIBTOOL_DEPS)
91         $(SHELL) ./config.status --recheck
92
93 installdirs:
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); \
99         fi
100         -if test "x$(dir_group)" != "x" ; then \
101            chgrp $(dir_group) $(DESTDIR)$(sysconfdir); \
102         fi
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); \
109         fi
110         -if test "x$(dir_user)" != "x" ; then \
111            chown $(dir_user) $(DESTDIR)$(working_dir); \
112         fi
113         -if test "x$(dir_group)" != "x" ; then \
114            chgrp $(dir_group) $(DESTDIR)$(working_dir); \
115         fi
116
117 install: installdirs
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
120
121 uninstall:
122         @for I in $(all_subdirs); do (cd $$I && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1); done
123
124 install-autostart:
125         (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1) 
126
127 install-autostart-dir:
128         (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1) 
129
130 install-autostart-fd:
131         (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1) 
132
133 install-autostart-sd:
134         (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1) 
135
136 uninstall-autostart:
137         (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
138
139 uninstall-autostart-dir:
140         (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
141
142 uninstall-autostart-fd:
143         (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
144
145 uninstall-autostart-sd:
146         (cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)
147
148 Makefile: Makefile.in
149         cd $(topdir) \
150             && CONFIG_FILES=$(thisdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
151
152 Makefiles:
153         $(SHELL) config.status
154         (cd scripts; \
155          chmod 755 startmysql stopmysql bacula startit stopit btraceback; \
156          chmod 755 mtx-changer bconsole gconsole devel_bacula; \
157          chmod 755 dvd-handler)
158
159         (cd src/cats; \
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)
163
164         @for I in @DB_BACKENDS@ ; do \
165           (cd src/cats; \
166            chmod 755 create_$${I}_database update_$${I}_tables make_$${I}_tables; \
167            chmod 755 grant_$${I}_privileges drop_$${I}_tables drop_$${I}_database); \
168           done
169
170         (cd src/qt-console; \
171          chmod 755 install_conf_file build-depkgs-qt-console)
172
173 clean:
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) {} \;
181
182
183 # clean for distribution
184 distclean:
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
195         @$(RMF) libtool
196
197 devclean:
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
206         @$(RMF) working/*
207
208 distdirs:
209         mkdir ../$(VERNAME);
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
212
213 distcopy:
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
217
218 distrib: configure autoconf/config.h.in distdirs distcopy
219
220 test:
221
222
223 tar.gz:  ../$(VERNAME).tar.gz
224 ../$(VERNAME).tar.gz:
225         (cd ..; tar cvf - $(VERNAME) | gzip -f9 > $(VERNAME).tar.gz)
226
227 tar.Z: ../$(VERNAME).tar.Z
228 ../$(VERNAME).tar.Z:
229         (cd ..; tar cvf - $(VERNAME) | compress > $(VERNAME).tar.Z)
230
231 tar.bz2: ../$(VERNAME).tar.bz2
232 ../$(VERNAME).tar.bz2:
233         (cd ..; tar cvf - $(VERNAME) | bzip2 -f9 > $(VERNAME).tar.bz2)
234
235 uuencode: tar.gz
236         uuencode ../$(VERNAME).tar.gz $(VERNAME).tar.gz > ../$(VERNAME).tgz.uu
237
238 # ------------------------------------------------------------------------