![]() |
|
|||
File indexing completed on 2025-08-06 08:13:19
0001 #!/bin/bash 0002 # ----------------------------------------------------------------------------- 0003 # 'sphx-build' 0004 # Derek Anderson 0005 # 08.09.2023 0006 # 0007 # A simple script to build an 0008 # sPHENIX module 0009 # ----------------------------------------------------------------------------- 0010 0011 if [ -z "$1" ]; then 0012 cd build 0013 ../autogen.sh --prefix=$MYINSTALL 0014 make -j 4 0015 make install 0016 elif [ "$1" == "-r" ]; then 0017 cd build 0018 make -j 4 0019 make install 0020 elif [ "$1" == "--rebuild" ]; then 0021 cd build 0022 make -j 4 0023 make install 0024 fi 0025 0026 # end -------------------------------------------------------------------------
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
![]() ![]() |