]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/Makefile.in
00e075d1b34cebb8ee5a63ba8900511bae104f34
[bacula/bacula] / bacula / src / Makefile.in
1 #
2 #
3 @MCOMMON@
4
5 srcdir =        .
6 VPATH =         .
7 .PATH:          .
8
9 # one up
10 basedir = ..
11 # top dir
12 topdir = ..
13 # this dir relative to top dir
14 thisdir = src
15
16 DEBUG=-DDEBUG_STRICT @DEBUG@
17
18 first_rule: all
19 dummy:
20
21 #
22 # these are the objects that are changed by the .configure process
23 EXTRAOBJS = @OBJLIST@
24
25 # it's ``be kind to gmake week''
26 #EXTPROS = $(SRCS:S,.c,.extpro,)
27 EXTPROS = 
28
29 .SUFFIXES:      .c .o
30 .PHONY:
31 .DONTCARE:
32
33 # inference rules
34 .c.o:
35         $(CXX) $(DEFS) $(DEBUG) -c $(CPPFLAGS) -I. -I$(basedir) -I$(srcdir) $(DINCLUDE) $(CFLAGS) $<
36
37 .cc.o:
38         $(CXX) $(DEFS) $(DEBUG) -c $(CPPFLAGS) -I. -I$(basedir) -I$(srcdir) $(DINCLUDE) $(CFLAGS) $<
39 #-------------------------------------------------------------------------
40 all: Makefile 
41
42
43 Makefile: $(srcdir)/Makefile.in $(topdir)/config.status
44         cd $(topdir) \
45           && CONFIG_FILES=$(thisdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
46
47
48 clean:
49         @$(RMF) core core.* a.out *.o *.bak *~ *.intpro *.extpro 1 2 3
50
51 realclean: clean
52         @$(RMF) tags
53
54 distclean: realclean
55         if test $(srcdir) = .; then $(MAKE) realclean; fi
56         @(cd $(srcdir); $(RMF) Makefile)
57         @$(RMF) config.h
58
59 install:
60
61
62 uninstall:
63
64
65 depend: