]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/tools/Makefile.in
Fix of case from Fileset to FileSet for compatibility with mysql.
[bacula/bacula] / bacula / src / tools / Makefile.in
1 #
2 # Bacula Tools Makefile
3 #
4 # Version $Id$
5 #
6 @MCOMMON@
7
8 PYTHON_INC = @PYTHON_INCDIR@
9
10 srcdir =        .
11 VPATH =         .
12 .PATH:          .
13
14 # one up
15 basedir = ..
16 # top dir
17 topdir = ../..
18 # this dir relative to top dir
19 thisdir = src/tools
20
21 DEBUG=@DEBUG@
22
23 first_rule: all
24 dummy:
25
26 #
27
28 GETTEXT_LIBS = @LIBINTL@
29
30 OPENSSL_INC = @OPENSSL_INC@
31 OPENSSL_LIBS = @OPENSSL_LIBS@
32
33 FINDOBJS = testfind.o ../dird/dird_conf.o ../dird/inc_conf.o ../dird/run_conf.o
34
35 # these are the objects that are changed by the .configure process
36 EXTRAOBJS = @OBJLIST@
37
38 DIRCONFOBJS = ../dird/dird_conf.o ../dird/run_conf.o ../dird/inc_conf.o
39
40 NODIRTOOLS = bsmtp
41 DIRTOOLS = bsmtp dbcheck drivetype fstype testfind testls bregex bwild bbatch bregtest
42 TOOLS = $(@DIR_TOOLS@)
43
44 INSNODIRTOOLS = bsmtp
45 INSDIRTOOLS = bsmtp dbcheck bwild bregex
46 INSTOOLS = $(INS@DIR_TOOLS@)
47
48
49 .SUFFIXES:      .c .o
50 .PHONY:
51 .DONTCARE:
52
53 # inference rules
54 .c.o:
55         @echo "Compiling $<"
56         $(NO_ECHO)$(CXX) $(DEFS) $(DEBUG) -c $(CPPFLAGS) $(PYTHON_INC) -I$(srcdir) -I$(basedir) $(DINCLUDE) $(CFLAGS) $<
57 #-------------------------------------------------------------------------
58 all: Makefile $(TOOLS) gigaslam
59         @echo "==== Make of tools is good ===="
60         @echo " "
61
62 bsmtp:  bsmtp.o ../lib/libbac.a        
63         $(CXX) $(LDFLAGS) -L../lib -o $@ bsmtp.o -lbac -lm $(DLIB) $(LIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
64
65 bregtest:       bregtest.o ../lib/libbac.a        
66         $(CXX) $(LDFLAGS) -L../lib -o $@ bregtest.o -lbac -lm $(DLIB) $(LIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
67
68 dbcheck: dbcheck.o ../lib/libbac.a ../cats/libsql.a $(DIRCONFOBJS)
69         $(CXX) $(LDFLAGS) -L../lib -L../cats -o $@ dbcheck.o $(DIRCONFOBJS) -lsql -lbac -lm $(DB_LIBS) $(LIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
70
71 fstype: fstype.o ../lib/libbac.a ../findlib/libfind.a
72         $(CXX) $(LDFLAGS) -L../lib -L../findlib -o $@ fstype.o -lfind -lbac -lm $(DLIB) $(LIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
73
74 drivetype: drivetype.o ../lib/libbac.a ../findlib/libfind.a
75         $(CXX) $(LDFLAGS) -L../lib -L../findlib -o $@ drivetype.o -lfind -lbac -lm $(DLIB) $(LIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
76
77 dird_conf.o: ../dird/dird_conf.c
78         $(CXX) $(DEFS) $(DEBUG) -c $(CPPFLAGS) $(PYTHON_INC) -I$(srcdir) -I$(basedir) $(DINCLUDE) $(CFLAGS) $<
79
80 run_conf.o: ../dird/run_conf.c
81         $(CXX) $(DEFS) $(DEBUG) -c $(CPPFLAGS) $(PYTHON_INC) -I$(srcdir) -I$(basedir) $(DINCLUDE) $(CFLAGS) $<
82
83 inc_conf.o: ../dird/inc_conf.c
84         $(CXX) $(DEFS) $(DEBUG) -c $(CPPFLAGS) $(PYTHON_INC) -I$(srcdir) -I$(basedir) $(DINCLUDE) $(CFLAGS) $<
85
86 testfind: ../findlib/libfind.a ../lib/libbac.a $(FINDOBJS)
87         $(CXX) -g $(LDFLAGS) -L. -L../lib -L../findlib -o $@ $(FINDOBJS) \
88           $(DLIB) -lfind -lbac -lm $(LIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
89
90 testls: ../findlib/libfind.a ../lib/libbac.a testls.o
91         $(CXX) -g $(LDFLAGS) -L. -L../lib -L../findlib -o $@ testls.o \
92           $(DLIB) -lfind -lbac -lm $(LIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
93
94 bregex: ../findlib/libfind.a ../lib/libbac.a bregex.o
95         $(CXX) -g $(LDFLAGS) -L. -L../lib -o $@ bregex.o \
96           $(DLIB) -lbac -lm $(LIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
97
98 bwild:  ../findlib/libfind.a ../lib/libbac.a bwild.o
99         $(CXX) -g $(LDFLAGS) -L. -L../lib -o $@ bwild.o \
100           $(DLIB) -lbac -lm $(LIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
101
102 bbatch: ../lib/libbac.a bbatch.o
103         $(CXX) -g $(LDFLAGS) -L../cats -L. -L../lib -o $@ bbatch.o \
104           -lsql -lbac -lm $(DB_LIBS) $(LIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
105
106 gigaslam.o: gigaslam.c
107         $(CC) -c $<  
108
109 gigaslam: gigaslam.o
110         $(CC) -o $@ gigaslam.o
111
112
113 Makefile: $(srcdir)/Makefile.in $(topdir)/config.status
114         cd $(topdir) \
115           && CONFIG_FILES=$(thisdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
116
117 clean:
118         @$(RMF) bsmtp core core.* a.out *.o *.bak *~ *.intpro *.extpro 1 2 3
119         @$(RMF) $(DIRTOOLS)
120
121 realclean: clean
122         @$(RMF) tags
123
124 distclean: realclean
125         if test $(srcdir) = .; then $(MAKE) realclean; fi
126         (cd $(srcdir); $(RMF) Makefile)
127
128 devclean: realclean
129         if test $(srcdir) = .; then $(MAKE) realclean; fi
130         (cd $(srcdir); $(RMF) Makefile)
131
132 # Allow non-root execution of bsmtp for non-root Directors
133 install: $(INSTOOLS)
134         @for tool in ${INSTOOLS} ; do \
135            $(INSTALL_PROGRAM) $$tool $(DESTDIR)$(sbindir)/$$tool ; \
136         done
137         chmod 755 $(DESTDIR)$(sbindir)/bsmtp
138
139 uninstall:
140         @for tool in ${INSTOOLS} ; do \
141            $(RMF) $(DESTDIR)$(sbindir)/$$tool ; \
142         done
143
144
145
146 # Semi-automatic generation of dependencies:
147 # Use gcc -MM because X11 `makedepend' doesn't work on all systems
148 # and it also includes system headers.
149 # `semi'-automatic since dependencies are generated at distribution time.
150
151 depend:
152         @$(MV) Makefile Makefile.bak
153         @$(SED) "/^# DO NOT DELETE:/,$$ d" Makefile.bak > Makefile
154         @$(ECHO) "# DO NOT DELETE: nice dependency list follows" >> Makefile
155         @$(CXX) -S -M $(CPPFLAGS) $(PYTHON_INC) $(OPENSSL_INC) -I$(srcdir) -I$(basedir) $(SQL_INC) *.c >> Makefile
156         @if test -f Makefile ; then \
157             $(RMF) Makefile.bak; \
158         else \
159            $(MV) Makefile.bak Makefile; \
160            echo " ===== Something went wrong in make depend ====="; \
161         fi
162
163 # -----------------------------------------------------------------------
164 # DO NOT DELETE: nice dependency list follows