2015-08-04 01:31:07 +02:00
|
|
|
############################################################################
|
2017-04-11 21:39:07 +02:00
|
|
|
# apps/wireless/ieee802154/i8sak/Makefile
|
2015-08-04 01:31:07 +02:00
|
|
|
#
|
2021-06-07 19:49:13 +02: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
|
2015-08-04 01:31:07 +02:00
|
|
|
#
|
2021-06-07 19:49:13 +02:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2015-08-04 01:31:07 +02:00
|
|
|
#
|
2021-06-07 19:49:13 +02: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.
|
2015-08-04 01:31:07 +02:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2020-05-20 06:35:03 +02:00
|
|
|
include $(APPDIR)/Make.defs
|
2015-08-04 01:31:07 +02:00
|
|
|
|
2022-10-08 10:31:21 +02:00
|
|
|
# IEEE 802.15.4 SAK (swiss army knife)
|
2015-08-04 01:31:07 +02:00
|
|
|
|
2018-04-03 16:16:34 +02:00
|
|
|
PROGNAME = $(CONFIG_IEEE802154_I8SAK_PROGNAME)
|
|
|
|
PRIORITY = $(CONFIG_IEEE802154_I8SAK_PRIORITY)
|
|
|
|
STACKSIZE = $(CONFIG_IEEE802154_I8SAK_STACKSIZE)
|
2019-10-06 14:14:39 +02:00
|
|
|
MODULE = $(CONFIG_IEEE802154_I8SAK)
|
2015-08-04 01:31:07 +02:00
|
|
|
|
|
|
|
# IEEE 802.15.4 SAK (Swiss Army Knife)
|
|
|
|
|
2017-06-26 02:01:16 +02:00
|
|
|
CSRCS = i8sak_acceptassoc.c i8sak_assoc.c i8sak_scan.c i8sak_blaster.c i8sak_poll.c
|
2017-09-15 16:16:47 +02:00
|
|
|
CSRCS += i8sak_sniffer.c i8sak_startpan.c i8sak_tx.c i8sak_get.c i8sak_set.c
|
|
|
|
CSRCS += i8sak_reset.c i8sak_regdump.c i8sak_events.c
|
2015-08-04 01:31:07 +02:00
|
|
|
MAINSRC = i8sak_main.c
|
|
|
|
|
2018-09-03 17:29:56 +02:00
|
|
|
include $(APPDIR)/Application.mk
|