Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ardupilot
GitHub Repository: Ardupilot/ardupilot
Path: blob/master/Tools/UDP_Proxy/Makefile
4232 views
CC=gcc
CFLAGS=-Wall

udpproxy: udpproxy.c
	$(CC) $(CFLAGS) -o udpproxy udpproxy.c

clean:
	rm -f udpproxy