diff options
author | Mark D. Studebaker <mdsxyz123@yahoo.com> | 2004-02-01 22:44:07 +0000 |
---|---|---|
committer | Mark D. Studebaker <mdsxyz123@yahoo.com> | 2004-02-01 22:44:07 +0000 |
commit | 74de2272248c3f6c077bea1294c4b1eb11b13b50 (patch) | |
tree | 08113f249d18a631fba89d68f74605222422c046 /Makefile | |
parent | 8ec1dd9d012f0bbd39849dbbe07cd8b3aca4fb3f (diff) | |
download | lm-sensors-git-74de2272248c3f6c077bea1294c4b1eb11b13b50.tar.gz |
move the CC definition up so it is used in the MODPREF definition
rather than the default (cc)
git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@2260 7894878c-1315-0410-8ee3-d5d059ff63e0
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -79,6 +79,9 @@ DESTDIR := # This is the prefix that will be used for almost all directories below. PREFIX := /usr/local +# Your C compiler +CC := gcc + # This is the main modules directory into which the modules will be installed. # The magic invocation will return something like this: # /lib/modules/2.2.15-ac9 @@ -162,7 +165,6 @@ SRCDIRS += lib prog/detect prog/dump prog/eeprom prog/pwm \ MKDIR := mkdir -p RMDIR := rmdir RM := rm -f -CC := gcc BISON := bison FLEX := flex AR := ar |