]> git.meshlink.io Git - utcp/blobdiff - Makefile
Handle channel closure during a receive callback when the ringbuffer wraps.
[utcp] / Makefile
index f62279859a3ace0308963ab2d3575ad7b08b6094..134ca516bf34d3605fa00cc5c1bb9dd67bc2f388 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,23 @@
-CFLAGS ?= -O0 -Wall -g
-CFLAGS += -std=c99
+CFLAGS ?= -Og -Wall -W -pedantic -g
+CFLAGS += -std=c99 -DUTCP_DEBUG
 
 BIN = selftest test
 
 all: $(BIN)
 
-test: utcp.c test.c
+utcp.o: utcp.c utcp.h utcp_priv.h
 
-selftest: utcp.c selftest.c
+test: utcp.o test.c
+
+stream: stream.c
+
+selftest: utcp.o selftest.c
 
 clean:
        rm -f *.o $(BIN)
 
-.PHONY: clean
+astyle:
+       @astyle --version | grep -q "Version 3" || (echo 'ERROR: astyle version 3 required!' 1>&2 && exit 1)
+       astyle --options=.astylerc -nQ *.c *.h
+
+.PHONY: clean astyle