aboutsummaryrefslogtreecommitdiffstats
path: root/print/dviselect/scripts/configure
blob: ac2e807e0a4002aa2085ce468815b4f33c846ac4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

PREFIX=${PREFIX:-/usr/local}

echo "BINDIR = $PREFIX/bin"     >> $WRKSRC/Makefile || exit 1;
echo "MANDIR = $PREFIX/man"     >> $WRKSRC/Makefile || exit 1;
echo "all: default"             >> $WRKSRC/Makefile || exit 1;
echo "CFLAGS= $CFLAGS -I../h -I./h -DHAVE_VPRINTF" >> $WRKSRC/Makefile || exit 1;
echo "MFLAGS=CFLAGS=\"\${CFLAGS}\""   >> $WRKSRC/Makefile || exit 1;
exit 0;