view resources/tests/make_tests.sh @ 141:44d07fa9bd03 ClockSync

Ultra-basic feedback for clock sync works^CIssues: response time of the IIR filter is too slow, requires PID and better filtering algorithm.
author Giulio Moro <giuliomoro@yahoo.it>
date Mon, 14 Sep 2015 15:42:11 +0100
parents f5b5c648cd5d
children
line wrap: on
line source
#!/bin/bash
mkdir -p build
mkdir -p bin
g++ -o build/UdpServer.o -O2 -c ../../core/UdpServer.cpp &&\
g++ -O2 -o build/UdpClient.o -c ../../core/UdpClient.cpp && \
g++ -O2 -o build/UdpClientUdpServerTest.o -c UdpClientUdpServerTest.cpp && \
g++ -o bin/UdpClientUdpServerTest build/UdpClientUdpServerTest.o build/UdpClient.o build/UdpServer.o