]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/Makefile.in
Remove gnome-console
[bacula/bacula] / bacula / src / 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
16
17
18 first_rule: all
19 dummy:
20
21
22 .SUFFIXES:      .c .o
23 .PHONY:
24 .DONTCARE:
25
26 # inference rules
27 .c.o:
28         $(CXX) $(DEFS) $(DEBUG) -c $(CPPFLAGS) -I. -I$(basedir) -I$(srcdir) $(DINCLUDE) $(CFLAGS) $<
29
30 .cc.o:
31         $(CXX) $(DEFS) $(DEBUG) -c $(CPPFLAGS) -I. -I$(basedir) -I$(srcdir) $(DINCLUDE) $(CFLAGS) $<
32 #-------------------------------------------------------------------------
33 all: Makefile 
34
35
36 Makefile: $(srcdir)/Makefile.in $(topdir)/config.status
37         cd $(topdir) \
38           && CONFIG_FILES=$(thisdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
39
40 clean:
41         @$(RMF) core core.* a.out *.o *.bak *~ *.intpro *.extpro 1 2 3
42         @$(RMF) AUTHORS ChangeLog Makefile.am NEWS README acconfig.h autogen.sh 
43         @$(RMF) configure.in stamp.h stamp-h.in
44         @$(RMF) -r po
45
46 realclean: clean
47         @$(RMF) tags
48
49 distclean: realclean
50         if test $(srcdir) = .; then $(MAKE) realclean; fi
51         @(cd $(srcdir) && $(RMF) Makefile)
52         @$(RMF) config.h host.h
53
54 devclean: realclean
55         if test $(srcdir) = .; then $(MAKE) realclean; fi
56         @(cd $(srcdir) && $(RMF) Makefile)
57         @$(RMF) config.h host.h
58
59 install:
60
61
62 uninstall:
63
64
65 depend: