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
AUTOMAKE_OPTIONS = subdir-objects

# Fortran Compiler and Flags
AM_FCFLAGS = -O4 -fbounds-check -ffpe-trap=zero,overflow -Wunused -funroll-loops -g -fbacktrace 

# Linker Libraries
ALPS_LDADD = -lm $(LAPACK_LIBS) $(BLAS_LIBS)

# Output Program
bin_PROGRAMS = ALPS

# Sources (used only for dependency tracking and rule generation)
ALPS_SOURCES = \
    ALPS_var.f90 \
    ../distribution/distribution_analyt.f90 \
    ALPS_io.f90 \
    ALPS_com.f90 \
    ALPS_analyt.f90 \
    ALPS_NHDS.f90 \
    ALPS_fns_rel.f90 \
    ALPS_fns.f90 \
    ALPS.f90 
    


# Dependency Tracking
AM_CPPFLAGS = -MMD -MP
DEPDIR = .deps
-include $(wildcard $(DEPDIR)/*.d)