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
|
# OpenVAS
# $Id$
# Description: Some overall defines for this module.
#
# Authors:
# Renaud Deraison <deraison@nessus.org> (Original pre-fork development)
#
# Copyright:
# Based on work Copyright (C) 1998 - 2006 Tenable Network Security, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2,
# as published by the Free Software Foundation
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
SHELL = /bin/sh
CONFIGURE_ARGS = @ac_configure_args@
@SET_MAKE@
rootdir=@PWDD@
# Autoconf installation directories
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
datarootdir=@datarootdir@
datadir=@datadir@
sysconfdir=@sysconfdir@
sharedstatedir=@sharedstatedir@
localstatedir=@localstatedir@
libdir=@libdir@
includedir=@includedir@
oldincludedir=@oldincludedir@
infodir=@infodir@
mandir=@mandir@
libsdir=${rootdir}/libs
top_builddir = @PWDD@
include= -I. -I$(rootdir)/include -I$(includedir)
lib_dir=@libdir@
INSTALL=@INSTALL@
INSTALL_DIR=@INSTALL_DIR@
WS2_32=@with_ws2_32@
# Debugging ?
DEBUG = @debug_cflags@
# Produce verbose SSL output ?
DEBUG_SSL = @debug_ssl@
# Some defines you may want to modify
DEFS=@DEFS@ $(DEBUG_SSL) $(DEBUG)
LDFLAGS=@LDFLAGS@
# Your C compiler
CC=@CC@
LIBS=@LIBS@ -L$(libdir)
LIBTOOL=@LIBTOOL@
RANLIB=@RANLIB@
PACKAGE_VERSION = @OPENVASLIBS_SUPER@:@OPENVASLIBS_PATCH@:@OPENVASLIBS_MINOR@
#libraries
GLIB_CFLAGS=@GLIB_CFLAGS@
GLIB_LIBS=@GLIB_LIBS@
|