Files
lammps/src/ASPHERE/Install.sh

48 lines
1.1 KiB
Bash

# Install/unInstall package files in LAMMPS
if (test $1 = 1) then
cp compute_erotate_asphere.cpp ..
cp compute_temp_asphere.cpp ..
cp fix_nh_asphere.cpp ..
cp fix_nph_asphere.cpp ..
cp fix_npt_asphere.cpp ..
cp fix_nve_asphere.cpp ..
cp fix_nvt_asphere.cpp ..
cp pair_gayberne.cpp ..
cp pair_resquared.cpp ..
cp compute_erotate_asphere.h ..
cp compute_temp_asphere.h ..
cp fix_nh_asphere.h ..
cp fix_nph_asphere.h ..
cp fix_npt_asphere.h ..
cp fix_nve_asphere.h ..
cp fix_nvt_asphere.h ..
cp pair_gayberne.h ..
cp pair_resquared.h ..
elif (test $1 = 0) then
rm ../compute_erotate_asphere.cpp
rm ../compute_temp_asphere.cpp
rm ../fix_nh_asphere.cpp
rm ../fix_nph_asphere.cpp
rm ../fix_npt_asphere.cpp
rm ../fix_nve_asphere.cpp
rm ../fix_nvt_asphere.cpp
rm ../pair_gayberne.cpp
rm ../pair_resquared.cpp
rm ../compute_erotate_asphere.h
rm ../compute_temp_asphere.h
rm ../fix_nh_asphere.h
rm ../fix_nph_asphere.h
rm ../fix_npt_asphere.h
rm ../fix_nve_asphere.h
rm ../fix_nvt_asphere.h
rm ../pair_gayberne.h
rm ../pair_resquared.h
fi