]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/Makefile.in
Add openssl-compat.h which went in wrong directory
[bacula/bacula] / bacula / src / Makefile.in
1 #
2 # Copyright (C) 2000-2015 Kern Sibbald
3 # License: BSD 2-Clause; see file LICENSE-FOSS
4 #
5 @MCOMMON@
6
7 srcdir =        .
8 VPATH =         .
9 .PATH:          .
10
11 # one up
12 basedir = @BUILD_DIR@
13 # top dir
14 topdir = @BUILD_DIR@
15 # this dir relative to top dir
16 thisdir = src
17
18
19 first_rule: all
20 dummy:
21
22
23 .SUFFIXES:      .c .o
24 .PHONY:
25 .DONTCARE:
26
27 # inference rules
28 .c.o:
29         $(CXX) $(DEFS) $(DEBUG) -c $(CPPFLAGS) -I. -I$(basedir) -I$(srcdir) $(DINCLUDE) $(CFLAGS) $<
30
31 .cc.o:
32         $(CXX) $(DEFS) $(DEBUG) -c $(CPPFLAGS) -I. -I$(basedir) -I$(srcdir) $(DINCLUDE) $(CFLAGS) $<
33 #-------------------------------------------------------------------------
34 all: Makefile 
35
36
37 Makefile: $(srcdir)/Makefile.in $(topdir)/config.status
38         cd $(topdir) \
39           && CONFIG_FILES=$(thisdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
40
41 clean:
42         @$(RMF) core core.* a.out *.o *.bak *~ *.intpro *.extpro 1 2 3
43         @$(RMF) AUTHORS ChangeLog Makefile.am NEWS README acconfig.h autogen.sh 
44         @$(RMF) configure.in stamp.h stamp-h.in
45         @$(RMF) -r po
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: