summaryrefslogtreecommitdiff
path: root/autoconf/Make.common.in
blob: e2f2f551aa0aeee7213f9ffc34010ee5652fdd59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#
# Copyright (C) 2000-2018 Kern Sibbald
# License: BSD 2-Clause; see file LICENSE-FOSS
#
# This file is pulled in by all the Unix Bacula Makefiles
#   so it has all the "common" definitions
#

DATE="@DATE@"
LSMDATE=@LSMDATE@
VERSION=@VERSION@
VERNAME=bacula-$(VERSION)#
MAINT=Kern Sibbald#
MAINTEMAIL=<kern@sibbald.com>#
WEBMAINT=#
WEBMAINTEMAIL=#
WEBPAGE=#
FTPSITENAME=#
FTPSITEDIR=#
#-------------------------------------------------------------------------

SHELL = /bin/sh

# Installation target directories & other installation stuff
prefix = @prefix@
exec_prefix = @exec_prefix@
binprefix =
manprefix =
datarootdir = @datarootdir@
docdir = @docdir@
sbindir = @sbindir@
libdir = @libdir@
includedir = @includedir@
sysconfdir = @sysconfdir@
plugindir = @plugindir@
scriptdir = @scriptdir@
logdir = @logdir@
archivedir = @archivedir@
mandir = @mandir@
manext = 8

NO_ECHO =

# Tools & program stuff
CC = @CC@
CPP = @CPP@
CXX = @CXX@
MV = @MV@
RM = @REMOVE@
RMF = $(RM) -f
CP = @CP@
SED = @SED@
AWK = @AWK@
ECHO = /bin/echo
CMP = @CMP@
TBL = @TBL@
AR = @AR@
GMAKE = @GMAKE@
RANLIB = @RANLIB@
MKDIR = @BUILD_DIR@/autoconf/mkinstalldirs
INSTALL = @INSTALL@
# add the -s to the following in PRODUCTION mode
INSTALL_PROGRAM = $(INSTALL) -m @SBINPERM@
INSTALL_PROGRAM_ALL = $(INSTALL) -m 755
INSTALL_LIB = $(INSTALL) -m 755
INSTALL_DATA = $(INSTALL) -m 644
INSTALL_SCRIPT = $(INSTALL) -m @SBINPERM@
INSTALL_CONFIG = $(INSTALL) -m 660

#
# Libtool specific settings
#
DEFAULT_OBJECT_TYPE = @DEFAULT_OBJECT_TYPE@
DEFAULT_ARCHIVE_TYPE = @DEFAULT_ARCHIVE_TYPE@
DEFAULT_SHARED_OBJECT_TYPE = @DEFAULT_SHARED_OBJECT_TYPE@
LIBTOOL = @BUILD_DIR@/libtool
LIBTOOL_COMPILE = @LIBTOOL@ --silent --tag=CXX --mode=compile
LIBTOOL_LINK = @LIBTOOL@ --silent --tag=CXX --mode=link
LIBTOOL_INSTALL = @LIBTOOL@ --silent --tag=CXX --mode=install
LIBTOOL_INSTALL_FINISH = @LIBTOOL@ --silent --tag=CXX --finish --mode=install
LIBTOOL_UNINSTALL = @LIBTOOL@ --silent --tag=CXX --mode=uninstall
LIBTOOL_CLEAN = @LIBTOOL@ --silent --tag=CXX --mode=clean

# Flags & libs
CFLAGS = @CFLAGS@ @OPENSSL_INC@

CPPFLAGS = @CPPFLAGS@ @OPENSSL_INC@
LDFLAGS = @LDFLAGS@
TTOOL_LDFLAGS = @TTOOL_LDFLAGS@
LIBS = @LIBS@
WRAPLIBS = @WRAPLIBS@
DINCLUDE = @DINCLUDE@
DLIB = @DLIB@
OPENSSL_LIBS = @OPENSSL_LIBS@
DLLIBS = @LIBADD_DLOPEN@

# Windows (cygwin) flags 
WCFLAGS = @WCFLAGS@
WLDFLAGS = @WLDFLAGS@

# End of common section of the Makefile
#-------------------------------------------------------------------------