summaryrefslogtreecommitdiff
path: root/BSDmakefile
diff options
context:
space:
mode:
authorAndrew Shadura <andrew@shadura.me>2014-06-17 11:57:32 +0200
committerAndrew Shadura <andrew@shadura.me>2014-06-17 11:57:32 +0200
commitd1e7e16224c881ee3093658fe4cbf14db244cec7 (patch)
tree8850e7a55b4b1589a7a08e2364e9c12dad31962c /BSDmakefile
parent246fb6b81eef837f1269073255373bf0a3d5c27a (diff)
Update to the latest upstream snapshot
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}