2016-02-26 05:11:30 +08:00
|
|
|
############################################################################
|
2021-03-09 05:29:12 +08:00
|
|
|
# drivers/wireless/ieee802154/Make.defs
|
2016-02-26 05:11:30 +08:00
|
|
|
#
|
2021-03-04 14:10:42 +08:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2016-02-26 05:11:30 +08:00
|
|
|
#
|
2021-03-04 14:10:42 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2016-02-26 05:11:30 +08:00
|
|
|
#
|
2021-03-04 14:10:42 +08:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2016-02-26 05:11:30 +08:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2016-02-27 00:08:36 +08:00
|
|
|
# Include nothing if IEEE 802.15.4 is disabled
|
2016-02-26 05:11:30 +08:00
|
|
|
|
2016-02-27 07:27:58 +08:00
|
|
|
ifeq ($(CONFIG_DRIVERS_IEEE802154),y)
|
2016-02-26 05:11:30 +08:00
|
|
|
|
2016-02-27 08:39:27 +08:00
|
|
|
# Include common IEEE 802.15.4 files into the build
|
2016-02-26 05:11:30 +08:00
|
|
|
|
2016-02-27 08:39:27 +08:00
|
|
|
# Include IEEE 802.15.4 drivers into the build
|
|
|
|
|
2020-05-21 01:11:16 +08:00
|
|
|
include wireless/ieee802154/mrf24j40/Make.defs
|
|
|
|
include wireless/ieee802154/at86rf23x/Make.defs
|
|
|
|
include wireless/ieee802154/xbee/Make.defs
|
2016-02-26 05:11:30 +08:00
|
|
|
|
2017-07-03 12:33:17 +08:00
|
|
|
# Include common IEEE 802.15.4 build support
|
2016-02-26 05:11:30 +08:00
|
|
|
|
2016-02-27 05:03:16 +08:00
|
|
|
DEPPATH += --dep-path wireless$(DELIM)ieee802154
|
|
|
|
VPATH += :wireless$(DELIM)ieee802154
|
2022-11-01 21:47:53 +08:00
|
|
|
CFLAGS += ${INCDIR_PREFIX}$(TOPDIR)$(DELIM)drivers$(DELIM)wireless$(DELIM)ieee802154
|
2016-02-26 05:11:30 +08:00
|
|
|
|
2016-02-27 07:27:58 +08:00
|
|
|
endif # CONFIG_DRIVERS_IEEE802154
|