forked from coin-or/Osi2
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.am
67 lines (46 loc) · 1.84 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
# Copyright (C) 2006 International Business Machines and others.
# All Rights Reserved.
# This file is distributed under the Eclipse Public License.
## $Id: Makefile.am 1717 2011-05-15 18:52:52Z stefan $
# Author: Andreas Waechter IBM 2006-04-13
AUTOMAKE_OPTIONS = foreign
include BuildTools/Makemain.inc
########################################################################
# Subdirectories and installation of .pc files #
########################################################################
pkgconfiglib_DATA = osi2.pc \
osi2plugin.pc \
osi2-unittests.pc \
osi2clpshim.pc \
osi2clpheavyshim.pc
SUBDIRS = src/Osi2Plugin \
src/Osi2 \
src/Osi2Shims
########################################################################
# Extra Targets #
########################################################################
test: all
cd test; $(MAKE) test
if COIN_HAS_CXXTEST
cxxtest: all
cd cxxtest ; $(MAKE) test
else
cxxtest: all
@echo "CxxTest does not appear to be installed!"
endif
unitTest: test
clean-local: clean-doxygen-docs
if test -r test/Makefile; then cd test; $(MAKE) clean; fi
if test -r cxxtest/Makefile; then cd cxxtest; $(MAKE) clean; fi
distclean-local:
if test -r test/Makefile; then cd test; $(MAKE) distclean; fi
if test -r cxxtest/Makefile; then cd cxxtest; $(MAKE) distclean; fi
install-exec-local: install-doc
uninstall-local: uninstall-doc uninstall-doxygen-docs
.PHONY: test unitTest cxxtest
########################################################################
# Maintainer Stuff #
########################################################################
CLEANFILES =
# Files that are generated and should be cleaned with make distclean
DISTCLEANFILES =