-
Notifications
You must be signed in to change notification settings - Fork 17
/
Makefile.am
60 lines (42 loc) · 2.18 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
#===========================================================================#
# #
# This file is part of the SYMPHONY MILP Solver Framework. #
# #
# SYMPHONY was jointly developed by Ted Ralphs (ted@lehigh.edu) and #
# Laci Ladanyi (ladanyi@us.ibm.com). #
# #
# The author of this file is Menal Guzelsoy #
# #
# (c) Copyright 2006-2019 Lehigh University. All Rights Reserved. #
# #
# This software is licensed under the Eclipse Public License. Please see #
# accompanying file for terms. #
# #
#===========================================================================#
## $Id: Makefile.am 344 2006-06-01 19:17:05Z menal $
include BuildTools/Makemain.inc
########################################################################
# Subdirectories #
########################################################################
SUBDIRS = src src/OsiSym
pkgconfiglib_DATA = symphony.pc symphony-app.pc osi-sym.pc
########################################################################
# Extra Targets #
########################################################################
test: all
cd test; $(MAKE) test
unitTest: test
fulltest: all
cd test; $(MAKE) fulltest
ptest: all
cd test; $(MAKE) ptest
punitTest: ptest
pfulltest: all
cd test; $(MAKE) pfulltest
clean-local:
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
.PHONY: test unitTest ptest punitTest