forked from geodynamics/pylith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
51 lines (44 loc) · 886 Bytes
/
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
# -*- Makefile -*-
#
# ----------------------------------------------------------------------
#
# Brad T. Aagaard, U.S. Geological Survey
# Charles A. Williams, GNS Science
# Matthew G. Knepley, University of Chicago
#
# This code was developed as part of the Computational Infrastructure
# for Geodynamics (http://geodynamics.org).
#
# Copyright (c) 2010-2017 University of California, Davis
#
# See COPYING for license information.
#
# ----------------------------------------------------------------------
#
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = \
libsrc \
modulesrc \
pylith \
applications \
templates \
share
if ENABLE_TESTING
SUBDIRS += \
unittests
endif
if ENABLE_FULL_TESTING
SUBDIRS += \
tests_auto
endif
DIST_SUBDIRS = $(SUBDIRS) \
examples \
tests \
doc
if ENABLE_DOCUMENTATION
SUBDIRS += doc
endif
EXTRA_DIST = \
CHANGES \
DEPENDENCIES
# End of file