]> git.sur5r.net Git - bacula/bacula/blob - bacula/autoconf/Make.common.in
Tweak more copyrights
[bacula/bacula] / bacula / autoconf / Make.common.in
1 #
2 # Author: Kern Sibbald
3 # License: LGPLv3
4 #
5 # This file is pulled in by all the Unix Bacula Makefiles
6 #   so it has all the "common" definitions
7 #
8 #  Bacula® - The Network Backup Solution
9 #
10 #  Copyright (C) 2000-2014 Free Software Foundation Europe e.V.
11 #
12 #  The main author of Bacula is Kern Sibbald, with contributions from many
13 #  others, a complete list can be found in the file AUTHORS.
14 #
15 #  You may use this file and others of this release according to the
16 #  license defined in the LICENSE file, which includes the Affero General
17 #  Public License, v3.0 ("AGPLv3") and some additional permissions and
18 #  terms pursuant to its AGPLv3 Section 7.
19 #
20 #  Bacula® is a registered trademark of Kern Sibbald.
21 #
22
23 DATE="@DATE@"
24 LSMDATE=@LSMDATE@
25 VERSION=@VERSION@
26 VERNAME=bacula-$(VERSION)#
27 MAINT=Kern Sibbald#
28 MAINTEMAIL=<kern@sibbald.com>#
29 WEBMAINT=#
30 WEBMAINTEMAIL=#
31 WEBPAGE=#
32 FTPSITENAME=#
33 FTPSITEDIR=#
34 #-------------------------------------------------------------------------
35
36 SHELL = /bin/sh
37
38 # Installation target directories & other installation stuff
39 prefix = @prefix@
40 exec_prefix = @exec_prefix@
41 binprefix =
42 manprefix =
43 datarootdir = @datarootdir@
44 docdir = @docdir@
45 sbindir = @sbindir@
46 libdir = @libdir@
47 includedir = @includedir@
48 sysconfdir = @sysconfdir@
49 plugindir = @plugindir@
50 scriptdir = @scriptdir@
51 archivedir = @archivedir@
52 mandir = @mandir@
53 manext = 8
54
55 NO_ECHO = @
56
57 # Tools & program stuff
58 CC = @CC@
59 CPP = @CPP@
60 CXX = @CXX@
61 MV = @MV@
62 RM = @REMOVE@
63 RMF = $(RM) -f
64 CP = @CP@
65 SED = @SED@
66 AWK = @AWK@
67 ECHO = /bin/echo
68 CMP = @CMP@
69 TBL = @TBL@
70 AR = @AR@
71 GMAKE = @GMAKE@
72 RANLIB = @RANLIB@
73 MKDIR = @BUILD_DIR@/autoconf/mkinstalldirs
74 INSTALL = @INSTALL@
75 # add the -s to the following in PRODUCTION mode
76 INSTALL_PROGRAM = $(INSTALL) -m @SBINPERM@
77 INSTALL_LIB = $(INSTALL) -m 755
78 INSTALL_DATA = $(INSTALL) -m 644
79 INSTALL_SCRIPT = $(INSTALL) -m @SBINPERM@
80 INSTALL_CONFIG = $(INSTALL) -m 640
81
82 #
83 # Libtool specific settings
84 #
85 DEFAULT_OBJECT_TYPE = @DEFAULT_OBJECT_TYPE@
86 DEFAULT_ARCHIVE_TYPE = @DEFAULT_ARCHIVE_TYPE@
87 DEFAULT_SHARED_OBJECT_TYPE = @DEFAULT_SHARED_OBJECT_TYPE@
88 LIBTOOL = @BUILD_DIR@/libtool
89 LIBTOOL_COMPILE = @LIBTOOL@ --silent --tag=CXX --mode=compile
90 LIBTOOL_LINK = @LIBTOOL@ --silent --tag=CXX --mode=link
91 LIBTOOL_INSTALL = @LIBTOOL@ --silent --tag=CXX --mode=install
92 LIBTOOL_INSTALL_FINISH = @LIBTOOL@ --silent --tag=CXX --finish --mode=install
93 LIBTOOL_UNINSTALL = @LIBTOOL@ --silent --tag=CXX --mode=uninstall
94 LIBTOOL_CLEAN = @LIBTOOL@ --silent --tag=CXX --mode=clean
95
96 # Flags & libs
97 CFLAGS = @CFLAGS@ @OPENSSL_INC@
98
99 CPPFLAGS = @CPPFLAGS@ @OPENSSL_INC@
100 LDFLAGS = @LDFLAGS@
101 TTOOL_LDFLAGS = @TTOOL_LDFLAGS@
102 #DEFS = @DEFS@ @LOCAL_DEFS@
103 LIBS = @LIBS@
104 WRAPLIBS = @WRAPLIBS@
105 DINCLUDE = @DINCLUDE@
106 DLIB = @DLIB@
107 OPENSSL_LIBS = @OPENSSL_LIBS@
108 DLLIBS = @LIBADD_DLOPEN@
109
110
111 # Windows (cygwin) flags 
112 WCFLAGS = @WCFLAGS@
113 WLDFLAGS = @WLDFLAGS@
114
115 # X Include directory
116 #XINC = @X_CFLAGS@ @XPM_CFLAGS@
117
118 # extra libraries needed by X on some systems, X library location
119 #XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@
120
121 # End of common section of the Makefile
122 #-------------------------------------------------------------------------