Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1#
2# Makefile for the Dallas's 1-wire bus.
3#
4
5ifneq ($(CONFIG_NET), y)
6EXTRA_CFLAGS += -DNETLINK_DISABLED
7endif
8
9ifeq ($(CONFIG_W1_DS2433_CRC), y)
10EXTRA_CFLAGS += -DCONFIG_W1_F23_CRC
11endif
12
13obj-$(CONFIG_W1) += wire.o
14wire-objs := w1.o w1_int.o w1_family.o w1_netlink.o w1_io.o
15
16obj-y += masters/ slaves/
17