You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
16 lines
223 B
Makefile
16 lines
223 B
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
|
||
|
|
|