]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/Makefile.in
change autorecycle.c name to recycle.c
[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 authenticate.c autoprune.c \
26           backup.c \
27           catreq.c dird_conf.c \
28           fd_cmds.c getmsg.c job.c \
29           mountreq.c msgchan.c newvol.c \
30           recycle.c restore.c run_conf.c \
31           scheduler.c ua_cmds.c \
32           ua_dotcmds.c \
33           ua_db_query.c ua_retention.c \
34           ua_input.c ua_output.c ua_prune.c \
35           ua_purge.c ua_run.c \
36           ua_select.c ua_server.c \
37           ua_status.c verify.c
38 SVROBJS = dird.o authenticate.o autoprune.o \
39           backup.o \
40           catreq.o dird_conf.o \
41           fd_cmds.o getmsg.o job.o \
42           mountreq.o msgchan.o newvol.o \
43           recycle.o restore.o run_conf.o \
44           scheduler.o ua_cmds.o \
45           ua_dotcmds.o \
46           ua_db_query.o ua_retention.o \
47           ua_input.o ua_output.o ua_prune.o \
48           ua_purge.o ua_run.o \
49           ua_select.o ua_server.o \
50           ua_status.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 $(CPPFLAGS) -I$(srcdir) -I$(basedir) $(DINCLUDE) $(CFLAGS) $<
62 #-------------------------------------------------------------------------
63 all: Makefile bacula-dir
64         @echo "==== Make of dird is good ===="
65         @echo " "
66
67 bacula-dir:  $(SVROBJS) ../lib/libbac.a ../cats/libsql.a
68         $(CXX) $(LDFLAGS) -L../lib -L../cats -o $@ $(SVROBJS) \
69               -lsql -lbac -lm $(LIBS) $(DLIB)
70
71 Makefile: $(srcdir)/Makefile.in $(topdir)/config.status
72         cd $(topdir) \
73           && CONFIG_FILES=$(thisdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
74
75 clean:
76         @$(RMF) dird bacula-dir core core.* a.out *.o *.bak *~ *.intpro *.extpro 1 2 3
77
78 realclean: clean
79         @$(RMF) tags bacula-dir.conf
80
81 distclean: realclean
82         if test $(srcdir) = .; then $(MAKE) realclean; fi
83         (cd $(srcdir); $(RMF) Makefile)
84
85 install: all
86         $(INSTALL_PROGRAM) bacula-dir $(DESTDIR)$(sbindir)/bacula-dir
87         @srcconf=bacula-dir.conf; \
88         if  test -f ${DESTDIR}${sysconfdir}/$$srcconf; then \
89            destconf=$$srcconf.new; \
90            echo "  ==> Found existing $$srcconf, installing new conf file as $$destconf"; \
91         else \
92            destconf=$$srcconf; \
93         fi; \
94         echo "${INSTALL_DATA} $$srcconf ${DESTDIR}${sysconfdir}/$$destconf"; \
95         ${INSTALL_DATA} $$srcconf ${DESTDIR}${sysconfdir}/$$destconf
96         @srcconf=query.sql; \
97         if  test -f ${DESTDIR}${sysconfdir}/$$srcconf; then \
98            destconf=$$srcconf.new; \
99            echo "  ==> Found existing $$srcconf, installing new conf file as $$destconf"; \
100         else \
101            destconf=$$srcconf; \
102         fi; \
103         echo "${INSTALL_DATA} $$srcconf ${DESTDIR}${sysconfdir}/$$destconf"; \
104         ${INSTALL_DATA} $$srcconf ${DESTDIR}${sysconfdir}/$$destconf
105
106
107 uninstall:
108         (cd $(DESTDIR)$(sbindir); $(RMF) bacula-dir)
109         (cd $(DESTDIR)$(sysconfdir); $(RMF) bacula-dir.conf)
110
111
112
113 # Semi-automatic generation of dependencies:
114 # Use gcc -MM because X11 `makedepend' doesn't work on all systems
115 # and it also includes system headers.
116 # `semi'-automatic since dependencies are generated at distribution time.
117
118 depend:
119         @$(MV) Makefile Makefile.bak
120         @$(SED) "/^# DO NOT DELETE:/,$$ d" Makefile.bak > Makefile
121         @$(ECHO) "# DO NOT DELETE: nice dependency list follows" >> Makefile
122         @$(CC) -S -M $(CPPFLAGS) $(XINC) -I$(srcdir) -I$(basedir) $(SQL_INC) *.c >> Makefile
123         @if test -f Makefile ; then \
124             $(RMF) Makefile.bak; \
125         else \
126            $(MV) Makefile.bak Makefile; \
127            echo -e "Something went wrong\n\a"; \
128         fi
129
130 # -----------------------------------------------------------------------
131 # DO NOT DELETE: nice dependency list follows