File: Makefile.src

package info (click to toggle)
magma 2.9.0%2Bds-2
  • links: PTS, VCS
  • area: contrib
  • in suites: trixie
  • size: 83,212 kB
  • sloc: cpp: 709,115; fortran: 121,916; ansic: 32,343; python: 25,603; f90: 15,208; makefile: 942; xml: 253; csh: 232; sh: 203; perl: 104
file content (32 lines) | stat: -rw-r--r-- 1,006 bytes parent folder | download | duplicates (3)
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
#//////////////////////////////////////////////////////////////////////////////
#   -- MAGMA (version 2.9.0) --
#      Univ. of Tennessee, Knoxville
#      Univ. of California, Berkeley
#      Univ. of Colorado, Denver
#      @date January 2025
#//////////////////////////////////////////////////////////////////////////////

# push previous directory
dir_stack := $(dir_stack) $(cdir)
cdir      := interface_hip
# ----------------------------------------------------------------------


# alphabetic order by base name (ignoring precision)
libmagma_src += \
	$(cdir)/alloc.cpp	\
	$(cdir)/blas_h_v2.cpp	\
	$(cdir)/blas_z_v1.cpp	\
	$(cdir)/blas_z_v2.cpp	\
	$(cdir)/copy_v1.cpp	\
	$(cdir)/copy_v2.cpp	\
	$(cdir)/error.cpp	\
	$(cdir)/connection_mgpu.cpp	\
	$(cdir)/interface.cpp	\
	$(cdir)/interface_v1.cpp	\


# ----------------------------------------------------------------------
# pop first directory
cdir      := $(firstword $(dir_stack))
dir_stack := $(wordlist 2, $(words $(dir_stack)), $(dir_stack))