X-Git-Url: http://git.meshlink.io/?p=utcp;a=blobdiff_plain;f=Makefile;h=134ca516bf34d3605fa00cc5c1bb9dd67bc2f388;hp=faa2f66a3b8e191e36340f3c6d64c466393baae6;hb=HEAD;hpb=d0c4523ccd8998a70262fb11e015ea807d4aaba7 diff --git a/Makefile b/Makefile index faa2f66..134ca51 100644 --- a/Makefile +++ b/Makefile @@ -9,12 +9,15 @@ utcp.o: utcp.c utcp.h utcp_priv.h test: utcp.o test.c +stream: stream.c + selftest: utcp.o selftest.c clean: rm -f *.o $(BIN) 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