]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/Makefile.in
1f32ee5812781a17ad744858f42a1e2e5d3bacd5
[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
44 realclean: clean
45         @$(RMF) tags
46
47 distclean: realclean
48         if test $(srcdir) = .; then $(MAKE) realclean; fi
49         @(cd $(srcdir); $(RMF) Makefile)
50         @$(RMF) config.h host.h
51         @$(RMF) -r CVS
52
53 install:
54
55
56 uninstall:
57
58
59 depend: