diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2011-07-01 12:02:43 -0700 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2011-07-01 12:02:43 -0700 |
commit | 0c6ff92f5cdccc70ff6f3b7a48e472faac6f9f06 (patch) | |
tree | ce6012aa94b2e6833ff6d54ddaee76f373a0a6c2 | |
parent | 909447ec255ffdb002049c1a2b9c182dbb2a4028 (diff) |
280.04280.04
-rw-r--r-- | utils.mk | 14 | ||||
-rw-r--r-- | version.mk | 2 |
2 files changed, 15 insertions, 1 deletions
@@ -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 ############################################################################## @@ -1 +1 @@ -NVIDIA_VERSION = 275.09.07 +NVIDIA_VERSION = 280.04 |