#!/bin/sh
# makeunix
# Invokes makefile with specific XLIB and XINCLUDE settings,
# IFF your version of make can take the -e flag
# (environment variables take precedence.)
export XINCLUDE
export XLIB
export CC
XINCLUDE='-I/usr/X11/include -I/usr/openwin/include'
XLIB='-L/usr/X11/lib -L/usr/openwin/lib'
CC='gcc'
make -f makefile.unx -e $@