at v2.6.20-rc2 15 lines 223 B view raw
1# 2# Makefile for the HID driver 3# 4 5# Multipart objects. 6hid-objs := hid-core.o hid-input.o 7 8# Optional parts of multipart objects. 9 10obj-$(CONFIG_HID) += hid.o 11 12ifeq ($(CONFIG_INPUT_DEBUG),y) 13EXTRA_CFLAGS += -DDEBUG 14endif 15