Skip to content
Snippets Groups Projects
Commit 5d9a6c1f authored by Stan Moore's avatar Stan Moore
Browse files

Add checks to Kokkos Install.sh so that files aren't unnecessarily recompiled

parent 58ed92d9
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,20 @@ action () { ...@@ -28,7 +28,20 @@ action () {
# force rebuild of files with LMP_KOKKOS switch # force rebuild of files with LMP_KOKKOS switch
touch ../accelerator_kokkos.h KOKKOS_INSTALLED=0
if (test -e ../Makefile.package) then
KOKKOS_INSTALLED=`grep DLMP_KOKKOS ../Makefile.package | wc -l`
fi
if (test $mode = 1) then
if (test $KOKKOS_INSTALLED = 0) then
touch ../accelerator_kokkos.h
fi
elif (test $mode = 0) then
if (test $KOKKOS_INSTALLED = 1) then
touch ../accelerator_kokkos.h
fi
fi
# list of files with optional dependcies # list of files with optional dependcies
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment