A simple library for building and parsing data frames for serial interfaces (like UART / RS232)
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
CFILES=../utils.c ../../TinyFrame.c
|
|
INCLDIRS=-I. -I.. -I../..
|
|
CFLAGS=-O0 -ggdb --std=gnu99 -Wno-main -Wno-unused -Wall -Wextra $(CFILES) $(INCLDIRS)
|
|
|
|
run: test.bin
|
|
./test.bin
|
|
|
|
build: test.bin
|
|
|
|
test.bin: test.c $(CFILES)
|
|
gcc test.c $(CFLAGS) -o test.bin
|
|
|