X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=Makefile;h=faa2f66a3b8e191e36340f3c6d64c466393baae6;hb=d16abd3be87bdc3872c671a04dccdd5b286a208f;hp=d10352e50d4a90bfd1e301322665ccc71eecc623;hpb=36555fb967087c22ec8854b4cad158f7d2688c5b;p=utcp diff --git a/Makefile b/Makefile index d10352e..faa2f66 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CFLAGS ?= -O2 -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