Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v2.6.20-rc7 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