forked from atompaw/atompaw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
84 lines (73 loc) · 2.15 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# -*- Automake -*-
#
# Makefile for the AtomPAW package
#
# Copyright (C) 2010-2022 Yann Pouillon, Marc Torrent
#
# This file is part of the AtomPAW software package. For license information,
# please see the COPYING file in the top-level directory of the source
# distribution.
#
# ------------------------------------ #
#
# Top makefile
#
# Autotools parameters
ACLOCAL_AMFLAGS = -I config/m4
# Subdirectories containing makefiles
SUBDIRS = src
# Files to distribute in the source package
EXTRA_DIST = \
README \
config/m4/ax_f90_module_extension.m4 \
config/m4/fortran.m4 \
config/m4/fortran_c_bindings.m4 \
config/m4/information.m4 \
config/m4/linalg.m4 \
config/m4/libxc.m4 \
config/m4/optimizations.m4 \
config/m4/workarounds.m4
# ------------------------------------ #
#
# Documentation: examples
#
# Files to distribute in the source package
atp_xmpl_srcs = \
example/Au/dirac/Au.input \
example/Au/dirac/Au \
example/F/lda/F.input \
example/F/lda/F.atomicdata \
example/F/lda/F.LDA-PW-paw.abinit \
example/F/lda/F.LDA-PW-paw.UPF \
example/F/hf/F.input \
example/F/hf/F.atomicdata \
example/Li/lda/Li.input \
example/Li/lda/Li.atomicdata \
example/Li/lda/Li.LDA-PW-paw.abinit \
example/Li/lda/Li.LDA-PW-paw.UPF \
example/Li/hf/Li.input \
example/Li/hf/Li.atomicdata \
example/Na/outputdata/in \
example/Na/outputdata/Na.atomicdata \
example/Na/outputdata/Na.LDA-PW-paw.abinit \
example/Na/outputdata/Na.LDA-PW-paw.UPF
atp_doc_srcs = \
doc/atompaw-usersguide.pdf \
doc/atompaw-usersguide.doc \
doc/Atompaw4.2.0.0.pdf \
doc/Atompaw4.2.0.0.tex \
doc/ATOMPAW_Explore_Userguide.pdf \
doc/ATOMPAW_Explore_Userguide.odt \
doc/exploresetup/ParameterExplore.cpp \
doc/exploresetup/ParameterExploreReadMe.txt \
doc/scripts/explorelogderiv \
doc/scripts/explorewfn \
doc/scripts/plotdensity \
doc/scripts/plotlogderiv \
doc/scripts/plotpotential \
doc/scripts/plotwfn
# Files to install (nobase = preserving the directory structure)
nobase_doc_DATA = $(atp_xmpl_srcs) $(atp_doc_srcs)
# Files to distribute in the source package
EXTRA_DIST += $(atp_xmpl_srcs)
EXTRA_DIST += $(atp_doc_srcs)