-
Notifications
You must be signed in to change notification settings - Fork 85
/
Makefile.am
39 lines (27 loc) · 1.07 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
# Copyright (C) 2006 International Business Machines and others.
# All Rights Reserved.
# This file is distributed under the Eclipse Public License.
#
# Author: Andreas Waechter IBM 2006-04-13
include BuildTools/Makemain.inc
########################################################################
# Subdirectories and installation of .pc files #
########################################################################
SUBDIRS = src
pkgconfiglib_DATA = clp.pc
# Build OsiClp only if Osi is available.
if COIN_HAS_OSI
SUBDIRS += src/OsiClp
pkgconfiglib_DATA += osi-clp.pc
endif
########################################################################
# 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