![]() |
|
|||
File indexing completed on 2025-08-06 08:11:47
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 ./autogen.sh --prefix=$MYINSTALL 0013 make -j 4 0014 make install 0015 elif [ "$1" == "-r" ]; then 0016 make -j 4 0017 make install 0018 elif [ "$1" == "--rebuild" ]; then 0019 make -j 4 0020 make install 0021 fi 0022 0023 # end -------------------------------------------------------------------------
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
![]() ![]() |