-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMakefile.am
51 lines (45 loc) · 1.3 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
# =================================================================================================
# This code is part of PyLith, developed through the Computational Infrastructure
# for Geodynamics (https://geodynamics.org).
#
# Copyright (c) 2010-2024, University of California, Davis and the PyLith Development Team.
# All rights reserved.
#
# See https://mit-license.org/ and LICENSE.md and for license information.
# =================================================================================================
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = \
dependencies \
cig
# ----------------------------------------------------------------------
# Files
# ----------------------------------------------------------------------
EXTRA_DIST = \
AUTHORS \
CHANGES.md \
LICENSE.md \
NEWS.md \
README.md \
configure.ac \
docker/README.md \
docker/builder.py \
docker/rockylinux-8 \
docker/rockylinux-9 \
docker/debian-stable \
docker/debian-testing \
docker/fedora-39 \
docker/fedora-40 \
docker/ubuntu-20.04 \
docker/ubuntu-22.04 \
docker/ubuntu-24.04 \
docker/ubuntu-24.10 \
packager/build.py \
packager/setup_macos.sh \
packager/setup_linux.sh \
packager/build.py \
packager/make_petscdist.sh \
packager/README.md
dist_noinst_SCRIPTS = \
bin/fetch.sh \
developer/developer_helper.py
# End of file