1# Copyright (C) 2006 International Business Machines and others.
2# All Rights Reserved.
3# This file is distributed under the Eclipse Public License.
4
5## $Id$
6
7# Author:  Andreas Waechter           IBM    2006-04-13
8
9AUTOMAKE_OPTIONS = foreign
10
11########################################################################
12#                    libCglMixedIntegerRounding2                       #
13########################################################################
14
15# Name of the library compiled in this directory.  We don't want it to be
16# installed since it will be collected into the libCgl library
17noinst_LTLIBRARIES = libCglMixedIntegerRounding2.la
18
19# List all source files for this library, including headers
20libCglMixedIntegerRounding2_la_SOURCES = CglMixedIntegerRounding2.cpp CglMixedIntegerRounding2.hpp CglMixedIntegerRounding2Test.cpp
21
22# This is for libtool (on Windows)
23libCglMixedIntegerRounding2_la_LDFLAGS = $(LT_LDFLAGS)
24
25# Here list all include flags, relative to this "srcdir" directory.  This
26# "cygpath" stuff is necessary to compile with native compilers on Windows.
27AM_CPPFLAGS = -I`$(CYGPATH_W) $(srcdir)/..` $(COINUTILS_CFLAGS) $(OSI_CFLAGS)
28
29# This line is necessary to allow VPATH compilation
30DEFAULT_INCLUDES = -I. -I`$(CYGPATH_W) $(srcdir)` -I..
31
32########################################################################
33#                Headers that need to be installed                     #
34########################################################################
35
36# Here list all the header files that are required by a user of the library,
37# and that therefore should be installed in 'include/coin'
38includecoindir = $(includedir)/coin
39includecoin_HEADERS = CglMixedIntegerRounding2.hpp
40