Sha256: 526991ef4cec180aafe5c1e5dc6dede57bd008b64aab2f09da8e40ea94384126
Contents?: true
Size: 534 Bytes
Versions: 44
Compression:
Stored size: 534 Bytes
Contents
CFLAGS = -std=c99 CFLAGS += -g CFLAGS += -Wall CFLAGS += -Wextra CFLAGS += -pedantic CFLAGS += -Werror VFLAGS = --quiet VFLAGS += --tool=memcheck VFLAGS += --leak-check=full VFLAGS += --error-exitcode=1 test: tests.out @./tests.out memcheck: tests.out @valgrind $(VFLAGS) ./tests.out @echo "Memory check passed" clean: rm -rf *.o *.out *.out.dSYM tests.out: test/test_word_count.c src/word_count.c src/word_count.h @echo Compiling $@ @cc $(CFLAGS) src/word_count.c test/vendor/unity.c test/test_word_count.c -o tests.out
Version data entries
44 entries across 44 versions & 1 rubygems