added a small test prg for serial in

This commit is contained in:
tTh
2018-12-12 16:06:18 +01:00
parent be3792f0bb
commit 0514cc5d10
5 changed files with 51 additions and 1 deletions

9
serial/Makefile Normal file
View File

@@ -0,0 +1,9 @@
serial.o: serial.c serial.h Makefile
gcc -Wall -c $<
t: t.c serial.o Makefile
gcc -Wall $< serial.o -o $@