Separate communication & graphics code

This commit is contained in:
PaulStoffregen 2016-02-14 15:00:53 -08:00
commit 22ef4bdfbe
4 changed files with 325 additions and 306 deletions

View file

@ -1,6 +1,8 @@
CC = gcc
CFLAGS = -O2 -Wall
imuread: imuread.c
gcc -O2 -Wall -o imuread imuread.c -lglut -lGLU -lGL
imuread: imuread.o serialdata.o
$(CC) $(CFLAGS) -o $@ $^ -lglut -lGLU -lGL
clean:
rm -f imuread
rm -f imuread *.o