A simple library for building and parsing data frames for serial interfaces (like UART / RS232)
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
CFILES=../utils.c ../../TinyFrame.c
|
|
INCLDIRS=-I. -I.. -I../..
|
|
CFLAGS=-O0 -ggdb --std=gnu99 -Wno-main -Wall -Wno-unused -Wextra $(CFILES) $(INCLDIRS)
|
|
|
|
|
|
build: test.bin
|
|
|
|
run: test.bin
|
|
./test.bin
|
|
|
|
test.bin: test.c $(CFILES)
|
|
gcc test.c $(CFLAGS) -o test.bin
|
|
|