]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/Makefile.in
This commit was manufactured by cvs2svn to create tag
[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 first_rule: all
22 dummy:
23
24 #
25 SVRSRCS = dird.c admin.c authenticate.c \
26           autoprune.c backup.c bsr.c \
27           catreq.c dird_conf.c expand.c \
28           fd_cmds.c getmsg.c inc_conf.c job.c \
29           jobq.c mountreq.c msgchan.c next_vol.c newvol.c \
30           recycle.c restore.c run_conf.c \
31           scheduler.c sql_cmds.c \
32           ua_cmds.c ua_dotcmds.c \
33           ua_query.c \
34           ua_input.c ua_label.c ua_output.c ua_prune.c \
35           ua_purge.c ua_restore.c ua_run.c \
36           ua_select.c ua_server.c \
37           ua_status.c ua_tree.c verify.c
38 SVROBJS = dird.o admin.o authenticate.o \
39           autoprune.o backup.o bsr.o \
40           catreq.o dird_conf.o expand.o \
41           fd_cmds.o getmsg.o inc_conf.o job.o \
42           jobq.o mountreq.o msgchan.o next_vol.o newvol.o \
43           recycle.o restore.o run_conf.o \
44           scheduler.o sql_cmds.o \
45           ua_cmds.o ua_dotcmds.o \
46           ua_query.o \
47           ua_input.o ua_label.o ua_output.o ua_prune.o \
48           ua_purge.o ua_restore.o ua_run.o \
49           ua_select.o ua_server.o \
50           ua_status.o ua_tree.o verify.o
51
52 # these are the objects that are changed by the .configure process
53 EXTRAOBJS = @OBJLIST@
54
55 .SUFFIXES:      .c .o
56 .PHONY:
57 .DONTCARE:
58
59 # inference rules
60 .c.o:
61         $(CXX) $(DEFS) $(DEBUG) -c $(WCFLAGS) $(CPPFLAGS) -I$(srcdir) -I$(basedir) $(DINCLUDE) $(CFLAGS) $<
62 #-------------------------------------------------------------------------
63 all: Makefile bacula-dir @STATIC_DIR@
64         @echo "==== Make of dird is good ===="
65         @echo " "
66
67 bacula-dir:  $(SVROBJS) ../lib/libbac.a ../cats/libsql.a ../findlib/libfind.a
68         $(CXX) $(WLDFLAGS) $(LDFLAGS) -L../lib -L../cats -L../findlib -o $@ $(SVROBJS) \
69               -lsql -lbac -lfind -lm $(LIBS) $(DLIB) $(DB_LIBS)
70
71 static-bacula-dir:  $(SVROBJS) ../lib/libbac.a ../cats/libsql.a ../findlib/libfind.a
72         $(CXX) $(WLDFLAGS) $(LDFLAGS) -static -L../lib -L../cats -L../findlib -o $@ $(SVROBJS) \
73               -lsql -lbac -lfind -lm $(LIBS) $(DLIB) $(DB_LIBS)
74         strip $@
75
76
77 Makefile: $(srcdir)/Makefile.in $(topdir)/config.status
78         cd $(topdir) \
79           && CONFIG_FILES=$(thisdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
80
81 clean:
82         @$(RMF) dird bacula-dir core core.* a.out *.o *.bak *~ *.intpro *.extpro 1 2 3
83         @$(RMF) static-bacula-dir
84
85 realclean: clean
86         @$(RMF) tags bacula-dir.conf
87
88 distclean: realclean
89         if test $(srcdir) = .; then $(MAKE) realclean; fi
90         (cd $(srcdir); $(RMF) Makefile; $(RMF) -r CVS)
91
92 install: all
93         $(INSTALL_PROGRAM) bacula-dir $(DESTDIR)$(sbindir)/bacula-dir
94         @srcconf=bacula-dir.conf; \
95         if  test -f ${DESTDIR}${sysconfdir}/$$srcconf; then \
96            destconf=$$srcconf.new; \
97            echo "  ==> Found existing $$srcconf, installing new conf file as $$destconf"; \
98         else \
99            destconf=$$srcconf; \
100         fi; \
101         echo "${INSTALL_CONFIG} $$srcconf ${DESTDIR}${sysconfdir}/$$destconf"; \
102         ${INSTALL_CONFIG} $$srcconf ${DESTDIR}${sysconfdir}/$$destconf
103         if  test -f ${DESTDIR}${scriptdir}/query.sql; then \
104            $(MV) -f ${DESTDIR}${scriptdir}/query.sql ${DESTDIR}${scriptdir}/query.sql.save; \
105         fi 
106         ${INSTALL_DATA} query.sql ${DESTDIR}${scriptdir}/query.sql
107         @if test -f static-bacula-dir; then \
108            $(INSTALL_PROGRAM) static-bacula-dir $(DESTDIR)$(sbindir)/static-bacula-dir; \
109         fi
110
111
112 uninstall:
113         (cd $(DESTDIR)$(sbindir); $(RMF) bacula-dir)
114         (cd $(DESTDIR)$(sysconfdir); $(RMF) bacula-dir.conf bacula-dir.conf.new)
115         (cd $(DESTDIR)$(scriptdir); $(RMF) query.sql)
116
117
118
119 # Semi-automatic generation of dependencies:
120 # Use gcc -MM because X11 `makedepend' doesn't work on all systems
121 # and it also includes system headers.
122 # `semi'-automatic since dependencies are generated at distribution time.
123
124 depend:
125         @$(MV) Makefile Makefile.bak
126         @$(SED) "/^# DO NOT DELETE:/,$$ d" Makefile.bak > Makefile
127         @$(ECHO) "# DO NOT DELETE: nice dependency list follows" >> Makefile
128         @$(CC) -S -M $(CPPFLAGS) $(XINC) -I$(srcdir) -I$(basedir) $(SQL_INC) *.c >> Makefile
129         @if test -f Makefile ; then \
130             $(RMF) Makefile.bak; \
131         else \
132            $(MV) Makefile.bak Makefile; \
133            echo -e "Something went wrong\n\a"; \
134         fi
135
136 # -----------------------------------------------------------------------
137 # DO NOT DELETE: nice dependency list follows