summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2011-07-01 12:03:09 -0700
committerAaron Plattner <aplattner@nvidia.com>2011-07-01 12:03:09 -0700
commite95cdfe0b3a66e67b975ce7cfc0cb3a23ddd92f3 (patch)
tree6501e5e128d60bd393eb676869f706b5adc7e326
parent4218c877fc81cf0a3116d79d279fe032139d0cc6 (diff)
280.04280.04
-rw-r--r--utils.mk14
-rw-r--r--version.mk2
2 files changed, 15 insertions, 1 deletions
diff --git a/utils.mk b/utils.mk
index dbdc70d..b906d74 100644
--- a/utils.mk
+++ b/utils.mk
@@ -111,6 +111,20 @@ CFLAGS += $(CC_ONLY_CFLAGS)
##############################################################################
+# This makefile uses the $(eval) builtin function, which was added in
+# GNU make 3.80. Check that the current make version recognizes it.
+# Idea suggested by: http://www.jgc.org/blog/cookbook-sample.pdf
+##############################################################################
+
+_eval_available :=
+$(eval _eval_available := T)
+
+ifneq ($(_eval_available),T)
+ $(error This Makefile requires a GNU Make that supports 'eval'. Please upgrade to GNU make 3.80 or later)
+endif
+
+
+##############################################################################
# define variables used when installing the open source utilities from
# the source tarball
##############################################################################
diff --git a/version.mk b/version.mk
index 8dac236..1ec3833 100644
--- a/version.mk
+++ b/version.mk
@@ -1 +1 @@
-NVIDIA_VERSION = 275.09.07
+NVIDIA_VERSION = 280.04