mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
5aaeaaea8c
very useful for fwding mavlink
9 lines
106 B
Makefile
9 lines
106 B
Makefile
CC=gcc
|
|
CFLAGS=-Wall
|
|
|
|
udpproxy: udpproxy.c
|
|
$(CC) $(CFLAGS) -o udpproxy udpproxy.c
|
|
|
|
clean:
|
|
rm -f udpproxy
|