Mercurial > ~dholland > hg > ag > index.cgi
view mk/include-defs.sh @ 4:bebb2ba69e1d
maybe help with getting tex to fail properly on error
author | David A. Holland |
---|---|
date | Sat, 18 Apr 2020 17:12:17 -0400 |
parents | 13d2b8934445 |
children |
line wrap: on
line source
#!/bin/sh # include-defs.sh - generate make defs for include path # usage: include-defs.sh 'incdirs' > rules.mk if [ $# != 1 ]; then echo "$0: usage: $0 'incdirs'" 1>&2 exit 1 fi INCDIRS="$1" INCFLAGS=`echo " " $INCDIRS | sed 's/ \([^ ]\)/ -I\1/g;s/^ *//'` echo "INCFLAGS=$INCFLAGS" WINDRES_INCFLAGS=`echo " " $INCDIRS | sed 's/ \([^ ]\)/ -i\1/g;s/^ *//'` echo "WINDRESFLAGS=$WINDRES_INCFLAGS"