summaryrefslogtreecommitdiff
path: root/BSDmakefile
blob: b0750511d52b0370a8619cc076d97f8600198e4e (plain)
1
2
3
4
5
6
7
8
9
10
# This BSDmakefile redirects to GNU make.

all: .DEFAULT
.DEFAULT:
	@case ${MAKE} in \
	gmake|*/gmake) \
		echo "BSDmakefile run using gmake??"; \
		exit 1;; \
	esac
	gmake ${.MAKEFLAGS} ${.TARGETS}