]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/console/Makefile.in
860ac0bd1be968a03e802e4558e600359aa60b2f
[bacula/bacula] / bacula / src / console / Makefile.in
1 #
2 #  Version $Id$
3 #
4 @MCOMMON@
5
6 srcdir =        .
7 VPATH =         .
8 .PATH:          .
9
10 # one up
11 basedir = ..
12 # top dir
13 topdir = ../..
14 # this dir relative to top dir
15 thisdir = src/console
16
17 DEBUG=@DEBUG@
18
19 first_rule: all
20 dummy:
21
22 #
23 CONSSRCS = console.c console_conf.c authenticate.c @CONS_SRC@ 
24 CONSOBJS = console.o console_conf.o authenticate.o @CONS_OBJ@
25
26 # these are the objects that are changed by the .configure process
27 EXTRAOBJS = @OBJLIST@
28
29 CONS_INC=@CONS_INC@
30 CONS_LIBS=@CONS_LIBS@
31 CONS_LDFLAGS=@CONS_LDFLAGS@
32
33 .SUFFIXES:      .c .o
34 .PHONY:
35 .DONTCARE:
36
37 # inference rules
38 .c.o:
39         $(CXX) $(DEFS) $(DEBUG) -c $(CPPFLAGS) $(CONS_INC) -I$(srcdir) -I$(basedir) $(DINCLUDE) $(CFLAGS) $<
40 #-------------------------------------------------------------------------
41 all: Makefile bconsole @STATIC_CONS@
42         @echo "==== Make of console is good ===="
43         @echo " "
44
45
46 bconsole: $(CONSOBJS) ../lib/libbac.a ../cats/libsql.a
47         $(CXX) $(LDFLAGS) $(CONS_LDFLAGS) -L../lib -L../cats -o $@ $(CONSOBJS) \
48               $(LIBS) $(DLIB) $(CONS_LIBS) -lbac -lsql -lm
49
50 static-bconsole: $(CONSOBJS) ../lib/libbac.a ../cats/libsql.a
51         $(CXX) -static $(LDFLAGS) $(CONS_LDFLAGS) -L../lib -L../cats -o $@ $(CONSOBJS) \
52               $(LIBS) $(DLIB) $(CONS_LIBS) -lbac -lsql -lm
53         strip $@
54
55
56 Makefile: $(srcdir)/Makefile.in $(topdir)/config.status
57         cd $(topdir) \
58           && CONFIG_FILES=$(thisdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
59
60 clean:
61         @$(RMF) console bconsole core core.* a.out *.o *.bak *~ *.intpro *.extpro 1 2 3
62         @$(RMF) static-console static-bconsole gmon.out
63
64 realclean: clean
65         @$(RMF) tags console.conf bconsole.conf
66
67 distclean: realclean
68         if test $(srcdir) = .; then $(MAKE) realclean; fi
69         (cd $(srcdir); $(RMF) Makefile; $(RMF) -r CVS)
70
71 install: all
72         @if test -f ${DESTDIR}${sbindir}/console; then \
73            echo " "; \
74            echo "Warning!!!  ${DESTDIR}${sbindir}console found."; \
75            echo " console has been renamed bconsole, so console"; \
76            echo " is no longer used, and you might want to delete it."; \
77            echo " "; \
78         fi
79         $(INSTALL_PROGRAM) bconsole $(DESTDIR)$(sbindir)/bconsole
80         @srcconf=bconsole.conf; \
81         if  test -f ${DESTDIR}${sysconfdir}/$$srcconf; then \
82            destconf=$$srcconf.new; \
83            echo "  ==> Found existing $$srcconf, installing new conf file as $$destconf"; \
84         else \
85            destconf=$$srcconf; \
86            if  test -f ${DESTDIR}${sysconfdir}/console.conf; then \
87               echo "Existing console.conf moved to bconsole.conf"; \
88               @$(MV) ${DESTDIR}${sysconfdir}/console.conf ${DESTDIR}${sysconfdir}/bconsole.conf; \
89               destconf=$$srcconf.new; \
90            fi; \
91         fi; \
92         echo "${INSTALL_CONFIG} $$srcconf ${DESTDIR}${sysconfdir}/$$destconf"; \
93         ${INSTALL_CONFIG} $$srcconf ${DESTDIR}${sysconfdir}/$$destconf
94         if test -f static-bconsole; then \
95            $(INSTALL_PROGRAM) static-bconsole $(DESTDIR)$(sbindir)/static-bconsole; \
96         fi
97
98 uninstall:
99         (cd $(DESTDIR)$(sbindir); $(RMF) bconsole static-bconsole)
100         (cd $(DESTDIR)$(sysconfdir); $(RMF) console.conf bconsole.conf bconsole.conf.new)
101
102
103
104 # Semi-automatic generation of dependencies:
105 # Use gcc -MM because X11 `makedepend' doesn't work on all systems
106 # and it also includes system headers.
107 # `semi'-automatic since dependencies are generated at distribution time.
108
109 depend:
110         @$(MV) Makefile Makefile.bak
111         @$(SED) "/^# DO NOT DELETE:/,$$ d" Makefile.bak > Makefile
112         @$(ECHO) "# DO NOT DELETE: nice dependency list follows" >> Makefile
113         @$(CC) -S -M $(CPPFLAGS) $(CONS_INC) -I$(srcdir) -I$(basedir) $(SQL_INC) *.c >> Makefile
114         @if test -f Makefile ; then \
115             $(RMF) Makefile.bak; \
116         else \
117            $(MV) Makefile.bak Makefile; \
118            echo -e "Something went wrong\n\a"; \
119         fi
120
121 # -----------------------------------------------------------------------
122 # DO NOT DELETE: nice dependency list follows