-
Notifications
You must be signed in to change notification settings - Fork 20
/
Makefile.am
50 lines (35 loc) · 2.06 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
#===========================================================================#
# This file is part of a Mixed Integer Bilevel Solver #
# #
# Authors: Scott DeNegre, Lehigh University #
# Ted Ralphs, Lehigh University #
# Sahar Tahernajad, Lehigh University #
# Copyright (C) 2007-2019 Lehigh University, Scott DeNegre, Ted Ralphs, #
# and Sahar Tahernajad #
# All Rights Reserved. #
# #
# This software is licensed under the Eclipse Public License. Please see #
# accompanying file for terms. #
#===========================================================================#
include BuildTools/Makemain.inc
########################################################################
# Subdirectories #
########################################################################
SUBDIRS = src
pkgconfiglib_DATA = mibs.pc
########################################################################
# 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: 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