Open
Description
Appears to require gmake rather than make, which I resolved by invoking via correct name (didn't see any hints to do this).
The following:
DEPS :=
does not work with BSD find (no -printf), changed to:
DEPS :=
Similarly:
SOURCES :=
does not work with BSD find (no -not), changed to:
SOURCES := $(shell find $(SRCDIR) -type f ( -name _.py -and ! -name 'test_' ))
After making the above changes I was able to 'gmake' successfully on OpenBSD 4.8/macppc.