summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorjakob <jakob@memeware.net>2017-04-09 19:39:46 -0400
committerjakob <jakob@memeware.net>2017-04-09 19:39:46 -0400
commit411a40b5c077ca69e34c7016428eb9d856f8fe73 (patch)
treecff2ee6b0f6e4144a0041c53adfc8c542088781c /Makefile
parent8a1fcff16e9ba8674c72011da7da5ad1bc133168 (diff)
Automated style checking and fixed unit tests.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 418683d..9a2ffd7 100644
--- a/Makefile
+++ b/Makefile
@@ -50,4 +50,7 @@ test: bin/test
clean:
rm -f bin/* obj/*
-.PHONY: clean test
+style:
+ astyle -n --recursive "src/*.c" "src/*.h" "test/*.c" "test/*.h"
+
+.PHONY: clean test style