diff options
| author | J08nY | 2017-10-14 13:51:47 +0200 |
|---|---|---|
| committer | J08nY | 2017-10-14 13:51:47 +0200 |
| commit | 4dece41c236a7e92ab04205e8b6e076a2514a528 (patch) | |
| tree | 81d01f854049a588cdd510deda3fc08a8f2e08c0 /test/src/Makefile | |
| parent | 80514f24dae8352f39f9a9e49c0d9afbd8edd432 (diff) | |
| download | ecgen-4dece41c236a7e92ab04205e8b6e076a2514a528.tar.gz ecgen-4dece41c236a7e92ab04205e8b6e076a2514a528.tar.zst ecgen-4dece41c236a7e92ab04205e8b6e076a2514a528.zip | |
Format and update README.
Diffstat (limited to 'test/src/Makefile')
| -rw-r--r-- | test/src/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/src/Makefile b/test/src/Makefile index 33e4bdf..5005303 100644 --- a/test/src/Makefile +++ b/test/src/Makefile @@ -17,6 +17,7 @@ INCLUDES = -I. -I../../src -I../../lib -I../lib/criterion/include LIBS = -lrt -lpari -lpthread -lparson -lsha1 -lcriterion TEST_SRC = $(wildcard *.c) $(wildcard */*.c) +TEST_HDR = $(wildcard */*.h) TEST_OBJ = $(patsubst %.c,%.o, $(TEST_SRC)) TESTS = $(patsubst %.c,%, $(TEST_SRC)) @@ -41,4 +42,8 @@ clean: clean-cov: find . -type f -name '*.gcda' -exec rm {} + find . -type f -name '*.gcno' -exec rm {} + - find . -type f -name '*.gcov' -exec rm {} +
\ No newline at end of file + find . -type f -name '*.gcov' -exec rm {} + + +format: + clang-format -i $(TEST_SRC) + clang-format -i $(TEST_HDR)
\ No newline at end of file |
