forked from coin-or/Osi
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile.am
101 lines (75 loc) · 2.65 KB
/
Makefile.am
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Copyright (C) 2006 International Business Machines and others.
# All Rights Reserved.
# This file is distributed under the Eclipse Public License.
## $Id$
# Author: Andreas Waechter IBM 2006-04-13
AUTOMAKE_OPTIONS = foreign
include BuildTools/Makemain.inc
########################################################################
# Subdirectories and installation of .pc files #
########################################################################
SUBDIRS = src/Osi src/OsiCommonTest
pkgconfiglibdir = $(libdir)/pkgconfig
pkgconfiglib_DATA = osi.pc osi-unittests.pc
if COIN_HAS_CPLEX
SUBDIRS += src/OsiCpx
pkgconfiglib_DATA += osi-cplex.pc
endif
if COIN_HAS_GLPK
SUBDIRS += src/OsiGlpk
pkgconfiglib_DATA += osi-glpk.pc
endif
if COIN_HAS_MOSEK
SUBDIRS += src/OsiMsk
pkgconfiglib_DATA += osi-mosek.pc
endif
if COIN_HAS_XPRESS
SUBDIRS += src/OsiXpr
pkgconfiglib_DATA += osi-xpress.pc
endif
if COIN_HAS_GUROBI
SUBDIRS += src/OsiGrb
pkgconfiglib_DATA += osi-gurobi.pc
endif
if COIN_HAS_SOPLEX
SUBDIRS += src/OsiSpx
pkgconfiglib_DATA += osi-soplex.pc
endif
# We don't want to compile the test subdirectory, unless the test target
# is specified. But we need to list it as subdirectory to make sure that
# it's included in the tarball
if ALWAYS_FALSE
SUBDIRS += test
endif
########################################################################
# Additional files to be included in tarball #
########################################################################
# Here we need include all files that are not mentioned in other Makefiles
EXTRA_DIST = \
examples/basic2.cpp \
examples/basic.cpp \
examples/build.cpp \
examples/Makefile.in \
examples/parameters.cpp \
examples/query.cpp \
examples/README \
examples/specific.cpp
########################################################################
# Extra Targets #
########################################################################
test: all
cd test; $(MAKE) test
unitTest: test
clean-local: clean-doxygen-docs
if test -r test/Makefile; then cd test; $(MAKE) clean; fi
distclean-local:
if test -r test/Makefile; then cd test; $(MAKE) distclean; fi
install-exec-local: install-doc
uninstall-local: uninstall-doc uninstall-doxygen-docs
.PHONY: test unitTest
########################################################################
# Maintainer Stuff #
########################################################################
CLEANFILES =
# Files that are generated and should be cleaned with make distclean
DISTCLEANFILES =