workaround the infamous select() bug : first milestone, demo code is coming

This commit is contained in:
2018-12-29 17:07:23 +01:00
parent 560edb14e8
commit 6aa2a26bec
7 changed files with 65 additions and 18 deletions

View File

@@ -4,6 +4,9 @@ OPT = -Wall -DDEBUG_LEVEL=1
serial.o: serial.c serial.h Makefile
gcc ${OPT} -c $<
t: t.c serial.o Makefile
gcc ${OPT} $< serial.o -o $@
funcs.o: funcs.c serial.h Makefile
gcc ${OPT} -c $<
t: t.c serial.o funcs.o Makefile
gcc ${OPT} $< serial.o funcs.o -o $@