]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/tools/Makefile.in
Strip pathname portion off all message routines that print filename:line.
[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
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
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) 
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 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 testfind: ../findlib/libfind.a ../lib/libbac.a $(FINDOBJS)
75         $(CXX) -g $(LDFLAGS) -L. -L../lib -L../findlib -o $@ $(FINDOBJS) \
76           $(DLIB) -lfind -lbac -lm $(LIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
77
78 testls: ../findlib/libfind.a ../lib/libbac.a testls.o
79         $(CXX) -g $(LDFLAGS) -L. -L../lib -L../findlib -o $@ testls.o \
80           $(DLIB) -lfind -lbac -lm $(LIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
81
82 bregex: ../findlib/libfind.a ../lib/libbac.a bregex.o
83         $(CXX) -g $(LDFLAGS) -L. -L../lib -o $@ bregex.o \
84           $(DLIB) -lbac -lm $(LIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
85
86 bwild:  ../findlib/libfind.a ../lib/libbac.a bwild.o
87         $(CXX) -g $(LDFLAGS) -L. -L../lib -o $@ bwild.o \
88           $(DLIB) -lbac -lm $(LIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
89
90
91
92 Makefile: $(srcdir)/Makefile.in $(topdir)/config.status
93         cd $(topdir) \
94           && CONFIG_FILES=$(thisdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
95
96 clean:
97         @$(RMF) bsmtp core core.* a.out *.o *.bak *~ *.intpro *.extpro 1 2 3
98         @$(RMF) $(DIRTOOLS)
99
100 realclean: clean
101         @$(RMF) tags
102
103 distclean: realclean
104         if test $(srcdir) = .; then $(MAKE) realclean; fi
105         (cd $(srcdir); $(RMF) Makefile)
106
107 devclean: realclean
108         if test $(srcdir) = .; then $(MAKE) realclean; fi
109         (cd $(srcdir); $(RMF) Makefile)
110
111 # Allow non-root execution of bsmtp for non-root Directors
112 install: $(INSTOOLS)
113         @for tool in ${INSTOOLS} ; do \
114            $(INSTALL_PROGRAM) $$tool $(DESTDIR)$(sbindir)/$$tool ; \
115         done
116         chmod 755 $(DESTDIR)$(sbindir)/bsmtp
117
118 uninstall:
119         @for tool in ${INSTOOLS} ; do \
120            $(RMF) $(DESTDIR)$(sbindir)/$$tool ; \
121         done
122
123
124
125 # Semi-automatic generation of dependencies:
126 # Use gcc -MM because X11 `makedepend' doesn't work on all systems
127 # and it also includes system headers.
128 # `semi'-automatic since dependencies are generated at distribution time.
129
130 depend:
131         @$(MV) Makefile Makefile.bak
132         @$(SED) "/^# DO NOT DELETE:/,$$ d" Makefile.bak > Makefile
133         @$(ECHO) "# DO NOT DELETE: nice dependency list follows" >> Makefile
134         @$(CXX) -S -M $(CPPFLAGS) $(PYTHON_INC) $(OPENSSL_INC) -I$(srcdir) -I$(basedir) $(SQL_INC) *.c >> Makefile
135         @if test -f Makefile ; then \
136             $(RMF) Makefile.bak; \
137         else \
138            $(MV) Makefile.bak Makefile; \
139            echo " ===== Something went wrong in make depend ====="; \
140         fi
141
142 # -----------------------------------------------------------------------
143 # DO NOT DELETE: nice dependency list follows