forked from coin-or/SYMPHONY.old
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.am
70 lines (51 loc) · 2.49 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
#===========================================================================#
# #
# This file is part of the SYMPHONY MILP Solver Framework. #
# #
# SYMPHONY was jointly developed by Ted Ralphs ([email protected]) and #
# Laci Ladanyi ([email protected]). #
# #
# The author of this file is Menal Guzelsoy #
# #
# (c) Copyright 2006-2015 Lehigh University. All Rights Reserved. #
# #
# This software is licensed under the Eclipse Public License. Please see #
# accompanying file for terms. #
# #
#===========================================================================#
## $Id$
AUTOMAKE_OPTIONS = foreign
EXTRA_DIST =
########################################################################
# Subdirectories #
########################################################################
# subdirs is set by configure as the list of all subdirectories to recurse
# into
SUBDIRS = $(subdirs)
########################################################################
# Extra Targets #
########################################################################
test: all
cd SYMPHONY; $(MAKE) test
fulltest: all
cd SYMPHONY; $(MAKE) fulltest
ptest: all
cd SYMPHONY; $(MAKE) ptest
pfulltest: all
cd SYMPHONY; $(MAKE) pfulltest
unitTest: test
punitTest: ptest
tests: all
for dir in $(SUBDIRS); do \
if test -r $$dir/test/Makefile; then \
(cd $$dir; $(MAKE) test) \
fi; \
done
unitTests: tests
.PHONY: test unitTest ptest punitTest tests unitTests fulltest pfulltest
########################################################################
# Maintainer Stuff #
########################################################################
# Files that are generated and should be cleaned with make distclean
DISTCLEANFILES = coin_subdirs.txt
include BuildTools/Makemain.inc