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# Author: Pietro Belotti, from a template by Pierre Bonami
6
7AUTOMAKE_OPTIONS = foreign
8
9noinst_LTLIBRARIES = libCouenneEllipCuts.la
10
11# List all source files for this library, including headers
12libCouenneEllipCuts_la_SOURCES =
13
14# This is for libtool
15libCouenneEllipCuts_la_LDFLAGS = $(LT_LDFLAGS)
16
17# Here list all include flags, relative to this "srcdir" directory.  This
18# "cygpath" stuff is necessary to compile with native compilers on Windows
19AM_CPPFLAGS = \
20	-I`$(CYGPATH_W) $(srcdir)/..` \
21	-I`$(CYGPATH_W) $(srcdir)/../convex` \
22	-I`$(CYGPATH_W) $(srcdir)/../expression` \
23	-I`$(CYGPATH_W) $(srcdir)/../disjunctive` \
24	-I`$(CYGPATH_W) $(srcdir)/../branch`\
25	-I`$(CYGPATH_W) $(srcdir)/../problem` \
26	$(COUENNELIB_CFLAGS)
27
28# This line is necessary to allow VPATH compilation
29DEFAULT_INCLUDES = -I. -I`$(CYGPATH_W) $(srcdir)` -I$(top_builddir)/src
30