X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fautoconf%2FMake.common.in;h=ed157ba76a94ae0b4213817fbae078a4a20847c5;hb=d1d1d5591c71fea470bf1601aaa0d5ad32451bda;hp=155e4e591edea2cfaad80f5f63eb77972777e728;hpb=95afad300f2da4b13b360c6b272596e1b1861167;p=bacula%2Fbacula diff --git a/bacula/autoconf/Make.common.in b/bacula/autoconf/Make.common.in index 155e4e591e..ed157ba76a 100644 --- a/bacula/autoconf/Make.common.in +++ b/bacula/autoconf/Make.common.in @@ -1,7 +1,24 @@ # +# Author: Kern Sibbald, 2002 +# License: LGPLv3 +# # This file is pulled in by all the Unix Bacula Makefiles # so it has all the "common" definitions # +# Bacula® - The Network Backup Solution +# +# Copyright (C) 2000-2014 Free Software Foundation Europe e.V. +# +# The main author of Bacula is Kern Sibbald, with contributions from many +# others, a complete list can be found in the file AUTHORS. +# +# You may use this file and others of this release according to the +# license defined in the LICENSE file, which includes the Affero General +# Public License, v3.0 ("AGPLv3") and some additional permissions and +# terms pursuant to its AGPLv3 Section 7. +# +# Bacula® is a registered trademark of Kern Sibbald. +# DATE="@DATE@" LSMDATE=@LSMDATE@ @@ -23,9 +40,15 @@ prefix = @prefix@ exec_prefix = @exec_prefix@ binprefix = manprefix = +datarootdir = @datarootdir@ +docdir = @docdir@ sbindir = @sbindir@ +libdir = @libdir@ +includedir = @includedir@ sysconfdir = @sysconfdir@ +plugindir = @plugindir@ scriptdir = @scriptdir@ +archivedir = @archivedir@ mandir = @mandir@ manext = 8 @@ -36,26 +59,43 @@ CC = @CC@ CPP = @CPP@ CXX = @CXX@ MV = @MV@ -RM = @RM@ -RMF = @RM@ -f +RM = @REMOVE@ +RMF = $(RM) -f CP = @CP@ SED = @SED@ AWK = @AWK@ -ECHO = @ECHO@ +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_DATA = @INSTALL@ -m 644 -INSTALL_SCRIPT = @INSTALL@ -m @SBINPERM@ -INSTALL_CONFIG = @INSTALL@ -m 640 +INSTALL_PROGRAM = $(INSTALL) -m @SBINPERM@ +INSTALL_LIB = $(INSTALL) -m 755 +INSTALL_DATA = $(INSTALL) -m 644 +INSTALL_SCRIPT = $(INSTALL) -m @SBINPERM@ +INSTALL_CONFIG = $(INSTALL) -m 640 + +# +# 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@ @@ -64,10 +104,9 @@ LIBS = @LIBS@ WRAPLIBS = @WRAPLIBS@ DINCLUDE = @DINCLUDE@ DLIB = @DLIB@ -DB_LIBS = @DB_LIBS@ -PYTHON_LIBS = @PYTHON_LIBS@ -PYTHON_INC = @PYTHON_INCDIR@ OPENSSL_LIBS = @OPENSSL_LIBS@ +DLLIBS = @LIBADD_DLOPEN@ + # Windows (cygwin) flags WCFLAGS = @WCFLAGS@