1# 2# Makefile for the Dallas's 1-wire bus. 3# 4 5ifeq ($(CONFIG_W1_DS2433_CRC), y) 6EXTRA_CFLAGS += -DCONFIG_W1_F23_CRC 7endif 8 9obj-$(CONFIG_W1) += wire.o 10wire-objs := w1.o w1_int.o w1_family.o w1_netlink.o w1_io.o 11 12obj-y += masters/ slaves/ 13 14