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.
15 lines
426 B
15 lines
426 B
# Makefile for the CAPI subsystem.
|
|
|
|
# Ordering constraints: kernelcapi.o first
|
|
|
|
# Each configuration option enables a list of files.
|
|
|
|
obj-$(CONFIG_ISDN_CAPI) += kernelcapi.o
|
|
obj-$(CONFIG_ISDN_CAPI_CAPI20) += capi.o
|
|
obj-$(CONFIG_ISDN_CAPI_CAPIDRV) += capidrv.o
|
|
obj-$(CONFIG_ISDN_CAPI_CAPIFS) += capifs.o
|
|
|
|
# Multipart objects.
|
|
|
|
kernelcapi-y := kcapi.o capiutil.o capilib.o
|
|
kernelcapi-$(CONFIG_PROC_FS) += kcapi_proc.o
|
|
|