summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2007-06-29 07:57:33 +0000
committerJean Delvare <khali@linux-fr.org>2007-06-29 07:57:33 +0000
commitc084fe78f4b0aa8b3721f4e6cef27a368bf24fe5 (patch)
tree1cbe25430f96d443930b41ec002c80cc6d7c717e /Makefile
parent184ad7e23e554922884460c57ae18d333ea7439a (diff)
downloadlm-sensors-git-c084fe78f4b0aa8b3721f4e6cef27a368bf24fe5.tar.gz
kernel/include/sensors.h is no longer used; delete it.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@4515 7894878c-1315-0410-8ee3-d5d059ff63e0
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 2 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 69f33530..d4a3cbf8 100644
--- a/Makefile
+++ b/Makefile
@@ -70,12 +70,8 @@ SBINDIR := $(PREFIX)/sbin
# You should not need to change this. It is the basic directory into which
# include files will be installed. The actual directory will be
-# $(INCLUDEDIR)/linux for system include files, and $(INCLUDEDIR)/sensors
-# for library include files. If PREFIX equals the default /usr/local/bin,
-# you will be able to use '#include <linux/sensors.h>' regardless of the
-# current kernel selected.
+# $(INCLUDEDIR)/sensors for library include files.
INCLUDEDIR := $(PREFIX)/include
-SYSINCLUDEDIR := $(INCLUDEDIR)/linux
LIBINCLUDEDIR := $(INCLUDEDIR)/sensors
# You should not need to change this. It is the base directory under which the
@@ -109,7 +105,6 @@ MACHINE := $(shell uname -m)
# The subdirectories we need to build things in
SRCDIRS :=
-SRCDIRS += kernel/include
SRCDIRS += lib prog/detect prog/dump prog/pwm \
prog/sensors ${PROG_EXTRA:%=prog/%} etc
SRCDIRS += lib/test
@@ -133,7 +128,7 @@ SED := sed
# PROGCPPFLAGS/PROGCFLAGS is to create regular object files (which are linked into executables).
# ARCPPFLAGS/ARCFLAGS are used to create archive object files (static libraries).
# LIBCPPFLAGS/LIBCFLAGS are for shared library objects.
-ALL_CPPFLAGS := -I. -Ikernel/include
+ALL_CPPFLAGS := -I.
ALL_CFLAGS := -Wall
ifeq ($(DEBUG),1)