forked from dune-project/dune-pdelab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
38 lines (31 loc) · 1.2 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
# $Id: duneproject 5370 2008-11-15 17:43:24Z christi $
# we need the module file to be able to build via dunecontrol
EXTRA_DIST = CMakeLists.txt \
dune.module \
GPL-2 \
GPL-3 \
LGPL-3 \
RELEASE_NOTES
# don't follow the full GNU-standard
# we need automake 1.5
AUTOMAKE_OPTIONS = foreign 1.5
# All subdirectories that must (or can) be handled before the library is built
SUBDIRS = \
cmake \
doc \
dune \
m4
# The library subdirectory itself
SUBDIRS += lib
# All subdirectories that must (or can) be handled after the library is built
# none yet...
# pass most important options when "make distcheck" is used
DISTCHECK_CONFIGURE_FLAGS = --with-dune=$(DUNEROOT) CXX="$(CXX)" CXXFLAGS="$(CXXFLAGS)" CC="$(CC)"
include $(top_srcdir)/am/top-rules
include $(top_srcdir)/am/global-rules
# Distribute and install config.h.cmake
configdir = $(datadir)/dune-pdelab
dist_config_DATA = config.h.cmake
# Generate package configuration files for finding
# installed modules with CMake
include $(top_srcdir)/am/cmake-pkg-config