]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/console/Makefile.in
d5b91b721652cffb0ccda8635b9136e81ef670ab
[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 @STATIC_CONS@
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) -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 core core.* a.out *.o *.bak *~ *.intpro *.extpro 1 2 3
62         @$(RMF) static-console
63
64 realclean: clean
65         @$(RMF) tags console.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         $(INSTALL_SCRIPT) console $(DESTDIR)$(sbindir)/console
73         @srcconf=console.conf; \
74         if  test -f ${DESTDIR}${sysconfdir}/$$srcconf; then \
75            destconf=$$srcconf.new; \
76            echo "  ==> Found existing $$srcconf, installing new conf file as $$destconf"; \
77         else \
78            destconf=$$srcconf; \
79         fi; \
80         echo "${INSTALL_CONFIG} $$srcconf ${DESTDIR}${sysconfdir}/$$destconf"; \
81         ${INSTALL_CONFIG} $$srcconf ${DESTDIR}${sysconfdir}/$$destconf
82
83 uninstall:
84         (cd $(DESTDIR)$(sbindir); $(RMF) console)
85         (cd $(DESTDIR)$(sysconfdir); $(RMF) console.conf console.conf.new)
86
87
88
89 # Semi-automatic generation of dependencies:
90 # Use gcc -MM because X11 `makedepend' doesn't work on all systems
91 # and it also includes system headers.
92 # `semi'-automatic since dependencies are generated at distribution time.
93
94 depend:
95         @$(MV) Makefile Makefile.bak
96         @$(SED) "/^# DO NOT DELETE:/,$$ d" Makefile.bak > Makefile
97         @$(ECHO) "# DO NOT DELETE: nice dependency list follows" >> Makefile
98         @$(CC) -S -M $(CPPFLAGS) $(CONS_INC) -I$(srcdir) -I$(basedir) $(SQL_INC) *.c >> Makefile
99         @if test -f Makefile ; then \
100             $(RMF) Makefile.bak; \
101         else \
102            $(MV) Makefile.bak Makefile; \
103            echo -e "Something went wrong\n\a"; \
104         fi
105
106 # -----------------------------------------------------------------------
107 # DO NOT DELETE: nice dependency list follows