remove development stuff from build script

This commit is contained in:
Geoff R. McLane 2015-02-12 13:32:30 +01:00
parent 3ff823e766
commit ebc8dce0aa

View file

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
#< build-me.sh - 20140804 #< build-me.sh - 20150212 - 20140804
BN=`basename $0` BN=`basename $0`
TMPSRC="../.." TMPSRC="../.."
@ -9,15 +9,16 @@ if [ -f "$BLDLOG" ]; then
rm -f $BLDLOG rm -f $BLDLOG
fi fi
TMPOPTS=""
############################################## ##############################################
### ***** NOTE THIS INSTALL LOCATION ***** ### ### ***** NOTE THIS INSTALL LOCATION ***** ###
### Change to suit your taste, environment ### ### Change to suit your taste, environment ###
############################################## ##############################################
TMPINST="$HOME/projects/install/tidy" # TMPINST="$HOME/projects/install/tidy"
TMPOPTS="-DCMAKE_INSTALL_PREFIX=$TMPINST" # TMPOPTS="-DCMAKE_INSTALL_PREFIX=$TMPINST"
############################################# #############################################
# Default to SHARED library in unix # To build SHARED library
TMPOPTS="$TMPOPTS -DBUILD_SHARED_LIB:BOOL=TRUE" # TMPOPTS="$TMPOPTS -DBUILD_SHARED_LIB:BOOL=TRUE"
for arg in $@; do for arg in $@; do
TMPOPTS="$TMPOPTS $arg" TMPOPTS="$TMPOPTS $arg"
@ -41,7 +42,7 @@ fi
echo "" echo ""
echo "$BN: appears a successful build... see $BLDLOG for details" echo "$BN: appears a successful build... see $BLDLOG for details"
echo "" echo ""
echo "$BN: Time for 'make install' IFF desired... to $TMPINST, unless changed..." echo "$BN: Time for '[sudo] make install' IFF desired..."
echo "" echo ""
# eof # eof