You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
374 B
16 lines
374 B
#
|
|
# Makefile for the Linux Plug-and-Play Support.
|
|
#
|
|
|
|
obj-y := core.o card.o driver.o resource.o manager.o support.o interface.o quirks.o
|
|
|
|
obj-$(CONFIG_PNPACPI) += pnpacpi/
|
|
obj-$(CONFIG_PNPBIOS) += pnpbios/
|
|
obj-$(CONFIG_ISAPNP) += isapnp/
|
|
|
|
# pnp_system_init goes after pnpacpi/pnpbios init
|
|
obj-y += system.o
|
|
|
|
ifeq ($(CONFIG_PNP_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|
|
|