diff options
Diffstat (limited to 'drivers/hid/Makefile')
-rw-r--r-- | drivers/hid/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile new file mode 100644 index 000000000000..6432392110bf --- /dev/null +++ b/drivers/hid/Makefile | |||
@@ -0,0 +1,15 @@ | |||
1 | # | ||
2 | # Makefile for the HID driver | ||
3 | # | ||
4 | |||
5 | # Multipart objects. | ||
6 | hid-objs := hid-core.o hid-input.o | ||
7 | |||
8 | # Optional parts of multipart objects. | ||
9 | |||
10 | obj-$(CONFIG_HID) += hid.o | ||
11 | |||
12 | ifeq ($(CONFIG_INPUT_DEBUG),y) | ||
13 | EXTRA_CFLAGS += -DDEBUG | ||
14 | endif | ||
15 | |||