Last change
on this file since 593 was
592,
checked in by lou, 14 years ago
|
Configuration and makefile changes for cbc-generic.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.4 KB
|
Line | |
---|
1 | # Copyright (C) 2006 International Business Machines and others. |
---|
2 | # All Rights Reserved. |
---|
3 | # This file is distributed under the Common Public License. |
---|
4 | |
---|
5 | ## $Id: Makefile.am 592 2007-03-30 21:16:44Z lou $ |
---|
6 | |
---|
7 | # Author: Andreas Waechter IBM 2006-04-13 |
---|
8 | |
---|
9 | AUTOMAKE_OPTIONS = foreign |
---|
10 | |
---|
11 | ######################################################################## |
---|
12 | # unitTest for Cbc # |
---|
13 | ######################################################################## |
---|
14 | |
---|
15 | CBC_TEST_TGTS = |
---|
16 | |
---|
17 | if COIN_HAS_CLP |
---|
18 | CBC_TEST_TGTS += test_cbc |
---|
19 | endif |
---|
20 | if CBC_BUILD_CBC_GENERIC |
---|
21 | CBC_TEST_TGTS += test_cbc_generic |
---|
22 | endif |
---|
23 | |
---|
24 | # We are using the solver executables to do the unit test |
---|
25 | |
---|
26 | test: $(CBC_TEST_TGTS) |
---|
27 | |
---|
28 | test_cbc: ../src/cbc$(EXEEXT) |
---|
29 | cd ../../Data/Netlib; make uncompress |
---|
30 | cd ../../Data/miplib3; make uncompress |
---|
31 | ../src/cbc$(EXEEXT) -unitTest -netlib -miplib |
---|
32 | |
---|
33 | test_cbc_generic: ../src/cbc-generic$(EXEEXT) |
---|
34 | echo "A minimal test is all that cbc-generic can manage just yet." |
---|
35 | ../src/cbc-generic$(EXEEXT) \ |
---|
36 | -directory ../../Data/miplib3 -import p0033 -branch |
---|
37 | |
---|
38 | .PHONY: test |
---|
39 | |
---|
40 | ######################################################################## |
---|
41 | # Cleaning stuff # |
---|
42 | ######################################################################## |
---|
43 | |
---|
44 | # Here we list everything that is not generated by the compiler, e.g., |
---|
45 | # output files of a program |
---|
46 | |
---|
47 | DISTCLEANFILES = yy.mps xx.mps |
---|
Note: See
TracBrowser
for help on using the repository browser.