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.
12 lines
404 B
12 lines
404 B
#
|
|
# Find all of the protocol directory names, and get the basename followed
|
|
# by a trailing slash.
|
|
#
|
|
protocols=$(shell find include/vservices/protocol/ -mindepth 1 -type d -exec basename {} \;)
|
|
protocol_dirs=$(foreach p, $(protocols), $(p)/)
|
|
|
|
#
|
|
# Export the headers for all protocols. The kbuild file in each protocol
|
|
# directory specifies exactly which headers to export.
|
|
#
|
|
header-y += $(protocol_dirs)
|
|
|