]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/console/Makefile.in
Prune SQL fix; finish Linux rescue; doc
[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
24 CONSOBJS = console.o console_conf.o authenticate.o
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 console
42         @echo "==== Make of console is good ===="
43         @echo " "
44
45
46 console: $(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-console: $(CONSOBJS) ../lib/libbac.a ../cats/libsql.a
51         $(CXX) $(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 core core.* a.out *.o *.bak *~ *.intpro *.extpro 1 2 3
62
63 realclean: clean
64         $(RMF) tags console.conf
65
66 distclean: realclean
67         if test $(srcdir) = .; then $(MAKE) realclean; fi
68         (cd $(srcdir); $(RMF) Makefile)
69
70 install: all
71         $(INSTALL_SCRIPT) console $(DESTDIR)$(sbindir)/console
72         @srcconf=console.conf; \
73         if  test -f ${DESTDIR}${sysconfdir}/$$srcconf; then \
74            destconf=$$srcconf.new; \
75            echo "  ==> Found existing $$srcconf, installing new conf file as $$destconf"; \
76         else \
77            destconf=$$srcconf; \
78         fi; \
79         echo "${INSTALL_DATA} $$srcconf ${DESTDIR}${sysconfdir}/$$destconf"; \
80         ${INSTALL_DATA} $$srcconf ${DESTDIR}${sysconfdir}/$$destconf
81
82 uninstall:
83         (cd $(DESTDIR)$(sbindir); $(RMF) console)
84         (cd $(DESTDIR)$(sysconfdir); $(RMF) console.conf
85
86
87
88 # Semi-automatic generation of dependencies:
89 # Use gcc -MM because X11 `makedepend' doesn't work on all systems
90 # and it also includes system headers.
91 # `semi'-automatic since dependencies are generated at distribution time.
92
93 depend:
94         @$(MV) Makefile Makefile.bak
95         @$(SED) "/^# DO NOT DELETE:/,$$ d" Makefile.bak > Makefile
96         @$(ECHO) "# DO NOT DELETE: nice dependency list follows" >> Makefile
97         @$(CC) -S -M $(CPPFLAGS) $(XINC) -I$(srcdir) -I$(basedir) $(SQL_INC) *.c >> Makefile
98         @if test -f Makefile ; then \
99             $(RMF) Makefile.bak; \
100         else \
101            $(MV) Makefile.bak Makefile; \
102            echo -e "Something went wrong\n\a"; \
103         fi
104
105 # -----------------------------------------------------------------------
106 # DO NOT DELETE: nice dependency list follows