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#                         libCglPreProcess                             #
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 = libCglPreProcess.la
18
19# List all source files for this library, including headers
20libCglPreProcess_la_SOURCES = CglPreProcess.cpp CglPreProcess.hpp
21
22# This is for libtool (on Windows)
23libCglPreProcess_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 = \
28	-I`$(CYGPATH_W) $(srcdir)/..` \
29	-I`$(CYGPATH_W) $(srcdir)/../CglProbing` \
30	-I`$(CYGPATH_W) $(srcdir)/../CglDuplicateRow` \
31	-I`$(CYGPATH_W) $(srcdir)/../CglClique` \
32	$(COINUTILS_CFLAGS) $(OSI_CFLAGS)
33
34# This line is necessary to allow VPATH compilation
35DEFAULT_INCLUDES = -I. -I`$(CYGPATH_W) $(srcdir)` -I..
36
37########################################################################
38#                Headers that need to be installed                     #
39########################################################################
40
41# Here list all the header files that are required by a user of the library,
42# and that therefore should be installed in 'include/coin'
43includecoindir = $(includedir)/coin
44includecoin_HEADERS = CglPreProcess.hpp
45