You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
607 B
32 lines
607 B
# 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
|
|
|
|
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
|
|
|
|
.PHONY: all strip clean install uninstall
|
|
|
|
all:
|
|
|
|
include eeprom/Module.mk
|
|
include tools/Module.mk
|