]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/Makefile.in
This commit was manufactured by cvs2svn to create tag
[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
41 clean:
42         @$(RMF) core core.* a.out *.o *.bak *~ *.intpro *.extpro 1 2 3
43         (cd gnome-console; $(MAKE) clean)
44         (cd gnome2-console; $(MAKE) clean)
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         @$(RMF) -r CVS
54
55 install:
56
57
58 uninstall:
59
60
61 depend: