forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@3299 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
39415fc3a7
commit
3c3529152c
|
@ -1,4 +1,7 @@
|
|||
# Install/unInstall package classes in LAMMPS
|
||||
# for unInstall, also unInstall/Install GPU package if installed
|
||||
# so it will remove GPU files that depend on ASPHERE files,
|
||||
# then replace others
|
||||
|
||||
if ($1 == 1) then
|
||||
|
||||
|
@ -45,4 +48,8 @@ else if ($1 == 0) then
|
|||
rm ../pair_gayberne.h
|
||||
rm ../pair_resquared.h
|
||||
|
||||
if (! -z ../style_gpu.h) then
|
||||
cd ../GPU; csh -f Install.csh 0; csh -f Install.csh 1
|
||||
endif
|
||||
|
||||
endif
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
# Install/unInstall package classes in LAMMPS
|
||||
# for unInstall, also unInstall/Install OPT package if installed
|
||||
# so it will remove OPT files that depend on KSPACE files,
|
||||
# then replace others
|
||||
|
||||
if ($1 == 1) then
|
||||
|
||||
|
@ -65,4 +68,8 @@ else if ($1 == 0) then
|
|||
rm ../remap.h
|
||||
rm ../remap_wrap.h
|
||||
|
||||
if (! -z ../style_opt.h) then
|
||||
cd ../OPT; csh -f Install.csh 0; csh -f Install.csh 1
|
||||
endif
|
||||
|
||||
endif
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
# Install/unInstall package classes in LAMMPS
|
||||
# for unInstall, also unInstall/Install OPT package if installed
|
||||
# so it will remove OPT files that depend on MANYBODY files,
|
||||
# then replace others
|
||||
|
||||
if ($1 == 1) then
|
||||
|
||||
|
@ -41,4 +44,8 @@ else if ($1 == 0) then
|
|||
rm ../pair_tersoff.h
|
||||
rm ../pair_tersoff_zbl.h
|
||||
|
||||
if (! -z ../style_opt.h) then
|
||||
cd ../OPT; csh -f Install.csh 0; csh -f Install.csh 1
|
||||
endif
|
||||
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue