Page MenuHomec4science

Makefile
No OneTemporary

File Metadata

Created
Thu, Nov 14, 00:06

Makefile

#
# author: gilles.fourestey@epfl.ch
#
SHELL:=/bin/bash
arch = intel
prec = double
#all: precision compile
all: compile
compile:
#@make -f Makefile.$(arch)
if which nvcc > /dev/null; then \
echo "nvcc detected, compiling the GPU lib"; \
make --silent -f Makefile.GPU.$(arch); \
else \
echo "no nvcc compiler detected"; \
fi
clean:
make -f Makefile.GPU.$(arch) clean

Event Timeline