2 # Bacula Director Makefile
16 # this dir relative to top dir
21 GETTEXT_LIBS = @LIBINTL@
23 OPENSSL_LIBS = @OPENSSL_LIBS@
24 OPENSSL_INC = @OPENSSL_INC@
26 PYTHON_LIBS = @PYTHON_LIBS@
27 PYTHON_INC = @PYTHON_INCDIR@
33 SVRSRCS = dird.c admin.c authenticate.c \
34 autoprune.c backup.c bsr.c \
35 catreq.c dird_conf.c expand.c \
36 fd_cmds.c getmsg.c inc_conf.c job.c \
38 mountreq.c msgchan.c next_vol.c newvol.c \
40 recycle.c restore.c run_conf.c \
42 ua_acl.c ua_cmds.c ua_dotcmds.c \
44 ua_input.c ua_label.c ua_output.c ua_prune.c \
45 ua_purge.c ua_restore.c ua_run.c \
46 ua_select.c ua_server.c \
47 ua_status.c ua_tree.c ua_update.c verify.c
48 SVROBJS = dird.o admin.o authenticate.o \
49 autoprune.o backup.o bsr.o \
50 catreq.o dird_conf.o expand.o \
51 fd_cmds.o getmsg.o inc_conf.o job.o \
53 mountreq.o msgchan.o next_vol.o newvol.o \
55 recycle.o restore.o run_conf.o \
57 ua_acl.o ua_cmds.o ua_dotcmds.o \
59 ua_input.o ua_label.o ua_output.o ua_prune.o \
60 ua_purge.o ua_restore.o ua_run.o \
61 ua_select.o ua_server.o \
62 ua_status.o ua_tree.o ua_update.o verify.o
64 # these are the objects that are changed by the .configure process
74 $(NO_ECHO)$(CXX) $(DEFS) $(DEBUG) -c $(WCFLAGS) $(CPPFLAGS) $(PYTHON_INC) $(OPENSSL_INC) -I$(srcdir) -I$(basedir) $(DINCLUDE) $(CFLAGS) $<
75 #-------------------------------------------------------------------------
76 all: Makefile bacula-dir @STATIC_DIR@
77 @echo "==== Make of dird is good ===="
80 bacula-dir: $(SVROBJS) ../lib/libbac.a ../cats/libsql.a ../findlib/libfind.a
81 @echo "Linking $@ ..."
82 $(CXX) $(WLDFLAGS) $(LDFLAGS) -L../lib -L../cats -L../findlib -o $@ $(SVROBJS) \
83 -lsql -lfind -lbac -lm $(PYTHON_LIBS) $(DLIB) $(DB_LIBS) $(LIBS) \
84 $(WRAPLIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
87 static-bacula-dir: $(SVROBJS) ../lib/libbac.a ../cats/libsql.a ../findlib/libfind.a
88 $(CXX) $(WLDFLAGS) $(LDFLAGS) -static -L../lib -L../cats -L../findlib -o $@ $(SVROBJS) \
89 -lsql -lbac -lfind -lm $(PYTHON_LIBS) $(DLIB) $(DB_LIBS) $(LIBS) \
90 $(WRAPLIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
94 Makefile: $(srcdir)/Makefile.in $(topdir)/config.status
96 && CONFIG_FILES=$(thisdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
99 @$(RMF) dird bacula-dir core core.* a.out *.o *.bak *~ *.intpro *.extpro 1 2 3
100 @$(RMF) static-bacula-dir
103 @$(RMF) tags bacula-dir.conf
106 if test $(srcdir) = .; then $(MAKE) realclean; fi
107 (cd $(srcdir); $(RMF) Makefile)
110 if test $(srcdir) = .; then $(MAKE) realclean; fi
111 (cd $(srcdir); $(RMF) Makefile)
114 $(INSTALL_PROGRAM) bacula-dir $(DESTDIR)$(sbindir)/bacula-dir
115 @srcconf=bacula-dir.conf; \
116 if test -f ${DESTDIR}${sysconfdir}/$$srcconf; then \
117 destconf=$$srcconf.new; \
118 echo " ==> Found existing $$srcconf, installing new conf file as $$destconf"; \
120 destconf=$$srcconf; \
122 echo "${INSTALL_CONFIG} $$srcconf ${DESTDIR}${sysconfdir}/$$destconf"; \
123 ${INSTALL_CONFIG} $$srcconf ${DESTDIR}${sysconfdir}/$$destconf
124 @if test -f ${DESTDIR}${scriptdir}/query.sql; then \
125 echo " ==> Saving existing query.sql to query.sql.old"; \
126 $(MV) -f ${DESTDIR}${scriptdir}/query.sql ${DESTDIR}${scriptdir}/query.sql.old; \
128 ${INSTALL_DATA} query.sql ${DESTDIR}${scriptdir}/query.sql
129 @if test -f static-bacula-dir; then \
130 $(INSTALL_PROGRAM) static-bacula-dir $(DESTDIR)$(sbindir)/static-bacula-dir; \
135 (cd $(DESTDIR)$(sbindir); $(RMF) bacula-dir)
136 (cd $(DESTDIR)$(sysconfdir); $(RMF) bacula-dir.conf bacula-dir.conf.new)
137 (cd $(DESTDIR)$(scriptdir); $(RMF) query.sql)
141 # Semi-automatic generation of dependencies:
142 # Use gcc -MM because X11 `makedepend' doesn't work on all systems
143 # and it also includes system headers.
144 # `semi'-automatic since dependencies are generated at distribution time.
147 @$(MV) Makefile Makefile.bak
148 @$(SED) "/^# DO NOT DELETE:/,$$ d" Makefile.bak > Makefile
149 @$(ECHO) "# DO NOT DELETE: nice dependency list follows" >> Makefile
150 @$(CXX) -S -M $(CPPFLAGS) $(XINC) $(PYTHON_INC) $(OPENSSL_INC) -I$(srcdir) -I$(basedir) $(SQL_INC) *.c >> Makefile
151 @if test -f Makefile ; then \
152 $(RMF) Makefile.bak; \
154 $(MV) Makefile.bak Makefile; \
155 echo " ===== Something went wrong in make depend ====="; \
158 # -----------------------------------------------------------------------
159 # DO NOT DELETE: nice dependency list follows