mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-09 09:36:14 +02:00
c99ba2c769
if it differs by more than 0.01 dBm from the level specified - tools/atspi-txrx/Makefile (LDLIBS): added -lm, for fabs() - tools/atspi-txrx/atspi-txrx.c (transmit, usage, main): add optional command-line argument with the number of times to send the message - tools/atspi-txrx/atspi-txrx.c (receive, transmit, die, main): return and clean up on ^C - tools/tools/lib/misctxrx.c (wait_for_interrupt) return and raise SIGINT for the caller's signal handler on ^C
19 lines
445 B
Makefile
19 lines
445 B
Makefile
#
|
|
# atspi-txrx/Makefile - Build the TX/RX test utility
|
|
#
|
|
# Written 2010 by Werner Almesberger
|
|
# Copyright 2010 Werner Almesberger
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
|
|
|
|
MAIN = atspi-txrx
|
|
|
|
include ../Makefile.common
|
|
|
|
LDLIBS += -lm
|