blob: a2bf718dee9cfc74303ba0d5f9686cfaa4be349e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# I2C tools for Linux
#
# Copyright (C) 2007 Jean Delvare <khali@linux-fr.org>
#
# Licensed under the GNU General Public License.
DESTDIR =
prefix = /usr/local
bindir = $(prefix)/bin
sbindir = $(prefix)/sbin
mandir = $(prefix)/share/man
man8dir = $(mandir)/man8
incdir = $(prefix)/include
INSTALL := install
INSTALL_DATA := $(INSTALL) -m 644
INSTALL_DIR := $(INSTALL) -m 755 -d
INSTALL_PROGRAM := $(INSTALL) -m 755
RM := rm -f
CC := gcc
CFLAGS := -Wall
CFLAGS += -O2
# When debugging, use the following instead
#CFLAGS += -O -g
KERNELVERSION := $(shell uname -r)
.PHONY: all strip clean install uninstall
all:
include eeprom/Module.mk
include include/Module.mk
include stub/Module.mk
include tools/Module.mk
|