view mk/include-defs.sh @ 3:e23ad76d0588

Document the LaTeX packages used in the install notes.
author David A. Holland
date Sun, 26 Apr 2009 18:23:33 -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"