swh:1:snp:49cd9498d6cccc5e78252c27dcb645bcf7bf0c91
Raw File
Tip revision: f56df2f4db6e4af87fb8e941cff69f4501a111df authored by Linus Torvalds on 31 January 2007, 03:42:57 UTC
Linux 2.6.20-rc7
Tip revision: f56df2f
Makefile
#
# Makefile for the HID driver
#

# Multipart objects.
hid-objs	:= hid-core.o hid-input.o

# Optional parts of multipart objects.

obj-$(CONFIG_HID)		+= hid.o

ifeq ($(CONFIG_INPUT_DEBUG),y)
EXTRA_CFLAGS += -DDEBUG
endif

back to top