]> 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 # $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 DEBUG=-DDEBUG_STRICT @DEBUG@
18
19 first_rule: all
20 dummy:
21
22 #
23 # these are the objects that are changed by the .configure process
24 EXTRAOBJS = @OBJLIST@
25
26 # it's ``be kind to gmake week''
27 #EXTPROS = $(SRCS:S,.c,.extpro,)
28 EXTPROS = 
29
30 .SUFFIXES:      .c .o
31 .PHONY:
32 .DONTCARE:
33
34 # inference rules
35 .c.o:
36         $(CXX) $(DEFS) $(DEBUG) -c $(CPPFLAGS) -I. -I$(basedir) -I$(srcdir) $(DINCLUDE) $(CFLAGS) $<
37
38 .cc.o:
39         $(CXX) $(DEFS) $(DEBUG) -c $(CPPFLAGS) -I. -I$(basedir) -I$(srcdir) $(DINCLUDE) $(CFLAGS) $<
40 #-------------------------------------------------------------------------
41 all: Makefile 
42
43
44 Makefile: $(srcdir)/Makefile.in $(topdir)/config.status
45         cd $(topdir) \
46           && CONFIG_FILES=$(thisdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
47
48
49 clean:
50         @$(RMF) core core.* a.out *.o *.bak *~ *.intpro *.extpro 1 2 3
51
52 realclean: clean
53         @$(RMF) tags
54
55 distclean: realclean
56         if test $(srcdir) = .; then $(MAKE) realclean; fi
57         @(cd $(srcdir); $(RMF) Makefile)
58         @$(RMF) config.h
59
60 install:
61
62
63 uninstall:
64
65
66 depend: