]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/Makefile.in
Correct pool source setting
[bacula/bacula] / bacula / src / dird / Makefile.in
1 #
2 #  Bacula Director Makefile
3 #
4 #  Version $Id$
5 #  
6 @MCOMMON@
7
8 srcdir =        .
9 VPATH =         .
10 .PATH:          .
11
12 # one up
13 basedir = ..
14 # top dir
15 topdir = ../..
16 # this dir relative to top dir
17 thisdir = src/dird
18
19 DEBUG=@DEBUG@
20
21 GETTEXT_LIBS = @LIBINTL@
22
23 OPENSSL_LIBS = @OPENSSL_LIBS@
24 OPENSSL_INC = @OPENSSL_INC@
25
26 PYTHON_LIBS = @PYTHON_LIBS@
27 PYTHON_INC = @PYTHON_INCDIR@
28
29 first_rule: all
30 dummy:
31
32 #
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 \
37           jobq.c migrate.c \
38           mountreq.c msgchan.c next_vol.c newvol.c \
39           pythondir.c \
40           recycle.c restore.c run_conf.c \
41           scheduler.c sql_cmds.c \
42           ua_acl.c ua_cmds.c ua_dotcmds.c \
43           ua_query.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 \
52           jobq.o migrate.o \
53           mountreq.o msgchan.o next_vol.o newvol.o \
54           pythondir.o \
55           recycle.o restore.o run_conf.o \
56           scheduler.o sql_cmds.o \
57           ua_acl.o ua_cmds.o ua_dotcmds.o \
58           ua_query.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
63
64 # these are the objects that are changed by the .configure process
65 EXTRAOBJS = @OBJLIST@
66
67 .SUFFIXES:      .c .o
68 .PHONY:
69 .DONTCARE:
70
71 # inference rules
72 .c.o:
73         @echo "Compiling $<"
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 ===="
78         @echo " "
79
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)
85
86 static-bacula-dir:  $(SVROBJS) ../lib/libbac.a ../cats/libsql.a ../findlib/libfind.a
87         $(CXX) $(WLDFLAGS) $(LDFLAGS) -static -L../lib -L../cats -L../findlib -o $@ $(SVROBJS) \
88               -lsql -lbac -lfind -lm $(PYTHON_LIBS) $(DLIB) $(DB_LIBS) $(LIBS) \
89               $(WRAPLIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
90         strip $@
91
92
93 Makefile: $(srcdir)/Makefile.in $(topdir)/config.status
94         cd $(topdir) \
95           && CONFIG_FILES=$(thisdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
96
97 clean:
98         @$(RMF) dird bacula-dir core core.* a.out *.o *.bak *~ *.intpro *.extpro 1 2 3
99         @$(RMF) static-bacula-dir
100
101 realclean: clean
102         @$(RMF) tags bacula-dir.conf
103
104 distclean: realclean
105         if test $(srcdir) = .; then $(MAKE) realclean; fi
106         (cd $(srcdir); $(RMF) Makefile)
107
108 devclean: realclean
109         if test $(srcdir) = .; then $(MAKE) realclean; fi
110         (cd $(srcdir); $(RMF) Makefile)
111
112 install: all
113         $(INSTALL_PROGRAM) bacula-dir $(DESTDIR)$(sbindir)/bacula-dir
114         @srcconf=bacula-dir.conf; \
115            if  test -f ${DESTDIR}${sysconfdir}/$$srcconf; then \
116               destconf=$$srcconf.new; \
117               echo "  ==> Found existing $$srcconf, installing new conf file as $$destconf"; \
118            else \
119               destconf=$$srcconf; \
120            fi; \
121            echo "${INSTALL_CONFIG} $$srcconf ${DESTDIR}${sysconfdir}/$$destconf"; \
122            ${INSTALL_CONFIG} $$srcconf ${DESTDIR}${sysconfdir}/$$destconf
123         @if  test -f ${DESTDIR}${scriptdir}/query.sql; then \
124            echo "  ==> Saving existing query.sql to query.sql.old"; \
125            $(MV) -f ${DESTDIR}${scriptdir}/query.sql ${DESTDIR}${scriptdir}/query.sql.old; \
126         fi 
127         ${INSTALL_DATA} query.sql ${DESTDIR}${scriptdir}/query.sql
128         @if test -f static-bacula-dir; then \
129            $(INSTALL_PROGRAM) static-bacula-dir $(DESTDIR)$(sbindir)/static-bacula-dir; \
130         fi
131
132
133 uninstall:
134         (cd $(DESTDIR)$(sbindir); $(RMF) bacula-dir)
135         (cd $(DESTDIR)$(sysconfdir); $(RMF) bacula-dir.conf bacula-dir.conf.new)
136         (cd $(DESTDIR)$(scriptdir); $(RMF) query.sql)
137
138
139
140 # Semi-automatic generation of dependencies:
141 # Use gcc -MM because X11 `makedepend' doesn't work on all systems
142 # and it also includes system headers.
143 # `semi'-automatic since dependencies are generated at distribution time.
144
145 depend:
146         @$(MV) Makefile Makefile.bak
147         @$(SED) "/^# DO NOT DELETE:/,$$ d" Makefile.bak > Makefile
148         @$(ECHO) "# DO NOT DELETE: nice dependency list follows" >> Makefile
149         @$(CXX) -S -M $(CPPFLAGS) $(XINC) $(PYTHON_INC) $(OPENSSL_INC) -I$(srcdir) -I$(basedir) $(SQL_INC) *.c >> Makefile
150         @if test -f Makefile ; then \
151             $(RMF) Makefile.bak; \
152         else \
153            $(MV) Makefile.bak Makefile; \
154            echo " ===== Something went wrong in make depend ====="; \
155         fi
156
157 # -----------------------------------------------------------------------
158 # DO NOT DELETE: nice dependency list follows