Skip to content

Commit

Permalink
Add a stub BSDmakefile that redirects to gmake.
Browse files Browse the repository at this point in the history
  • Loading branch information
jillest committed Jan 30, 2013
1 parent 76b468d commit 5a3a2fc
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions BSDmakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,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}

0 comments on commit 5a3a2fc

Please sign in to comment.