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: Makefile.am 1152 2007-12-28 03:59:07Z andreasw $ |
---|
6 | |
---|
7 | # Author: Andreas Waechter IBM 2006-04-13 |
---|
8 | |
---|
9 | AUTOMAKE_OPTIONS = foreign |
---|
10 | |
---|
11 | ######################################################################## |
---|
12 | # libOsiClp # |
---|
13 | ######################################################################## |
---|
14 | |
---|
15 | # Name of the library compiled in this directory. |
---|
16 | lib_LTLIBRARIES = libOsiClp.la |
---|
17 | |
---|
18 | # List all source files for this library, including headers |
---|
19 | libOsiClp_la_SOURCES = OsiClpSolverInterface.cpp OsiClpSolverInterface.hpp |
---|
20 | |
---|
21 | # List all additionally required libraries |
---|
22 | if DEPENDENCY_LINKING |
---|
23 | libOsiClp_la_LIBADD = $(OSICLPLIB_LIBS) ../libClp.la |
---|
24 | endif |
---|
25 | |
---|
26 | # This is for libtool (on Windows) |
---|
27 | libOsiClp_la_LDFLAGS = $(LT_LDFLAGS) |
---|
28 | |
---|
29 | # Here list all include flags, relative to this "srcdir" directory. This |
---|
30 | # "cygpath" stuff is necessary to compile with native compilers on Windows. |
---|
31 | AM_CPPFLAGS = -I`$(CYGPATH_W) $(srcdir)/..` $(COINUTILS_CFLAGS) $(OSI_CFLAGS) |
---|
32 | |
---|
33 | # This line is necessary to allow VPATH compilation |
---|
34 | DEFAULT_INCLUDES = -I. -I`$(CYGPATH_W) $(srcdir)` -I.. |
---|
35 | |
---|
36 | ######################################################################## |
---|
37 | # Headers that need to be installed # |
---|
38 | ######################################################################## |
---|
39 | |
---|
40 | # Here list all the header files that are required by a user of the library, |
---|
41 | # and that therefore should be installed in 'include/coin' |
---|
42 | includecoindir = $(includedir)/coin |
---|
43 | includecoin_HEADERS = OsiClpSolverInterface.hpp |
---|