5
0
mirror of https://github.com/ArduPilot/ardupilot synced 2025-02-23 08:13:56 -04:00
ardupilot/Tools/UDP_Proxy/Makefile
Andrew Tridgell 676ab60424 Tools: added UDP proxy code
very useful for fwding mavlink
2020-02-05 10:05:59 +11:00

9 lines
106 B
Makefile

CC=gcc
CFLAGS=-Wall
udpproxy: udpproxy.c
$(CC) $(CFLAGS) -o udpproxy udpproxy.c
clean:
rm -f udpproxy