-
Notifications
You must be signed in to change notification settings - Fork 8
/
Makefile.am
98 lines (80 loc) · 3.96 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
#=============================================================================#
# This file is part of the Abstract Library for Parallel Search (ALPS). #
# #
# ALPS is distributed under the Eclipse Public License as part of the #
# COIN-OR repository (http://www.coin-or.org). #
# #
# Authors: #
# #
# Yan Xu, Lehigh University #
# Aykut Bulut, Lehigh University #
# Ted Ralphs, Lehigh University #
# #
# Conceptual Design: #
# #
# Yan Xu, Lehigh University #
# Ted Ralphs, Lehigh University #
# Laszlo Ladanyi, IBM T.J. Watson Research Center #
# Matthew Saltzman, Clemson University #
# #
# #
# Copyright (C) 2001-2023, Lehigh University, Yan Xu, Aykut Bulut, and #
# Ted Ralphs. #
# All Rights Reserved. #
#=============================================================================#
## $Id: Makefile.am 788 2006-06-01 18:57:08Z andreasw $
include BuildTools/Makemain.inc
########################################################################
# Subdirectories #
########################################################################
SUBDIRS = src
pkgconfiglib_DATA = alps.pc
########################################################################
# Additional files to be included in tarball #
########################################################################
# Here we need include all files that are not mentioned in other Makefiles
EXTRA_DIST = \
examples/Abc/AbcBranchActual.cpp \
examples/Abc/AbcBranchActual.h \
examples/Abc/AbcBranchBase.cpp \
examples/Abc/AbcBranchBase.h \
examples/Abc/AbcCutGenerator.cpp \
examples/Abc/AbcCutGenerator.h \
examples/Abc/AbcHeuristic.cpp \
examples/Abc/AbcHeuristic.h \
examples/Abc/AbcMain.cpp \
examples/Abc/AbcMessage.cpp \
examples/Abc/AbcMessage.h \
examples/Abc/AbcModel.cpp \
examples/Abc/AbcModel.h \
examples/Abc/AbcNodeDesc.h \
examples/Abc/AbcParams.cpp \
examples/Abc/AbcParams.h \
examples/Abc/abc.par.in \
examples/Abc/abc.pbs \
examples/Abc/AbcSolution.cpp \
examples/Abc/AbcSolution.h \
examples/Abc/AbcTreeNode.cpp \
examples/Abc/AbcTreeNode.h \
examples/Abc/AUTHORS \
examples/Abc/INSTALL \
examples/Abc/LICENSE \
examples/Abc/Makefile.in \
examples/Abc/README \
examples/Abc/data/egout.mps \
examples/Abc/data/flugpl.mps \
examples/Abc/data/gen.mps \
examples/Abc/data/knap1.mps \
examples/Abc/data/knap2.mps \
examples/Abc/data/knap3.mps
########################################################################
# 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
install-exec-local: install-doc
uninstall-local: uninstall-doc uninstall-doxygen-docs
.PHONY: test unitTest doxydoc