swh:1:snp:c2847dfd741eae21606027cf29250d1ebcd63fb4
Raw File
Tip revision: 62d0cfcb27cf755cebdc93ca95dabc83608007cd authored by Linus Torvalds on 04 February 2007, 18:44:54 UTC
Linux 2.6.20
Tip revision: 62d0cfc
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