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
|
# Copyright (C) 2006 International Business Machines.
# All Rights Reserved.
# This file is distributed under the Eclipse Public License.
## $Id: configure.ac 527 2020-01-31 10:13:56Z stefan $
# Author: Andreas Waechter IBM 2006-04-13
#############################################################################
# Names and other basic things #
#############################################################################
AC_PREREQ(2.59)
AC_INIT([DataSample],[1.2.12],[https://projects.coin-or.org/BuildTools/])
AC_COPYRIGHT([
Copyright 2006 International Business Machines and others.
All Rights Reserved.
This file is part of the open source package Coin which is distributed
under the Eclipse Public License.])
# List one file in the package so that the configure script can test
# whether the package is actually there
AC_CONFIG_SRCDIR(configure.ac)
# Where should everything be installed by default? Here, we want it
# to be installed directly in 'bin', 'lib', 'include' subdirectories
# of the directory where configure is run. The default would be
# /usr/local.
AC_PREFIX_DEFAULT([`pwd`])
AC_COIN_PROJECTDIR_INIT(DataSample,2:12:1)
#############################################################################
# We only need automake to generate Makefiles for the distribution #
#############################################################################
# Initialize automake
AC_COIN_INIT_AUTOMAKE
#############################################################################
#Find out what the data files are and create links if this is a VPATH config#
#############################################################################
AC_COIN_EXAMPLE_FILES([*.mps])
AC_COIN_EXAMPLE_FILES([*.lp])
AC_COIN_EXAMPLE_FILES([*.block])
AC_COIN_EXAMPLE_FILES([*.dec])
AC_COIN_EXAMPLE_FILES([input.130])
AC_COIN_EXAMPLE_FILES([app0110.* app0110R.* bug.*])
##############################################################################
# Finishing up by writing all the output #
##############################################################################
ABSBUILDDIR="`pwd`"
AC_SUBST(ABSBUILDDIR)
# Here list all the files that configure should create (except for the
# configuration header file)
AC_CONFIG_FILES([Makefile coindatasample.pc coindatasample-uninstalled.pc])
# Finally, we let configure write all the output...
AC_COIN_FINALIZE
|