1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#//////////////////////////////////////////////////////////////////////////////
# -- 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 := sparse
# ----------------------------------------------------------------------
# see top Makefile for including subdirectories of sparse
# (this is so top Makefile.src depends on all subdirectory Makefile.src files)
# ----------------------------------------------------------------------
# pop first directory
cdir := $(firstword $(dir_stack))
dir_stack := $(wordlist 2, $(words $(dir_stack)), $(dir_stack))
|