]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/Makefile.in
ebl Add more tests in migration time test (like for copy time test)
[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         (cd gnome2-console && $(MAKE) clean)
46
47 realclean: clean
48         @$(RMF) tags
49
50 distclean: realclean
51         if test $(srcdir) = .; then $(MAKE) realclean; fi
52         @(cd $(srcdir) && $(RMF) Makefile)
53         @$(RMF) config.h host.h
54
55 devclean: realclean
56         if test $(srcdir) = .; then $(MAKE) realclean; fi
57         @(cd $(srcdir) && $(RMF) Makefile)
58         @$(RMF) config.h host.h
59
60 install:
61
62
63 uninstall:
64
65
66 depend: