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