| Jiri Kosina | 63f3861 | 2006-12-08 18:41:30 +0100 | [diff] [blame] | 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 | |||||