X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=Makefile;h=faa2f66a3b8e191e36340f3c6d64c466393baae6;hb=d16abd3be87bdc3872c671a04dccdd5b286a208f;hp=c2429e5f9c256dfb01b8d02151cf293e4c4df2c0;hpb=f795503080bc1e7a812d58da62513219d2b5db74;p=utcp diff --git a/Makefile b/Makefile index c2429e5..faa2f66 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CFLAGS ?= -Og -Wall -g +CFLAGS ?= -Og -Wall -W -pedantic -g CFLAGS += -std=c99 -DUTCP_DEBUG BIN = selftest test @@ -14,4 +14,7 @@ selftest: utcp.o selftest.c clean: rm -f *.o $(BIN) -.PHONY: clean +astyle: + astyle --options=.astylerc -nQ *.c *.h + +.PHONY: clean astyle