forked from tkralphs/GrUMPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
56 lines (43 loc) · 2.46 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
#============================================================================#
# This file is part of the GrUMPy library #
# #
# GrUMPy is distributed under the Eclipse Public License as part of the #
# COIN-OR repository (http://www.coin-or.org). #
# #
# Authors: Brady Hunsaker, Google ([email protected]) #
# Osman Ozaltin, University of Waterloo ([email protected]) #
# Aykut Bulut ([email protected]), Lehigh Univesity #
# Ted Ralphs ([email protected]), Lehigh University #
# #
# #
# Copyright (C) 2009-2013, Google, Lehigh University, University of Waterloo,#
# Brady Hunsaker, Osman Ozaltin, Aykut Bulut, and Ted Ralphs #
# All Rights Reserved. #
#============================================================================#
AUTOMAKE_OPTIONS = foreign
########################################################################
# Subdirectories #
########################################################################
SUBDIRS = src/grumpy
# We don't want to compile the test subdirectory, unless the test target is
# specified. But we need to list it as subdirectory to make sure that it is
# included in the tarball
if ALWAYS_FALSE
SUBDIRS += test
endif
########################################################################
# Additional files to be included in tarball #
########################################################################
# Here we need include all files that are not mentioned in other Makefiles
EXTRA_DIST =
########################################################################
# Extra Targets #
########################################################################
test: all
cd test; $(MAKE) test
unitTest: test
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
.PHONY: test unitTest