summaryrefslogtreecommitdiff
path: root/BSDmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'BSDmakefile')
-rw-r--r--BSDmakefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/BSDmakefile b/BSDmakefile
new file mode 100644
index 0000000..b075051
--- /dev/null
+++ b/BSDmakefile
@@ -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}