Subject: Re: make & shell question..
To: Noud de Brouwer <noud@dns.knot.nl>
From: Todd Whitesel <toddpw@best.com>
List: netbsd-help
Date: 10/27/1999 01:58:18
> CONTRIBDIR:=$(shell cd ../contrib && pwd)

The above is a GNU make specific syntax. The BSD make equivalent is:

CONTRIBDIR != cd ../contrib && pwd

--
Todd Whitesel
toddpw @ best.com