Sha256: bf7302c566509f942272906a53996eb229ab76ad86fc3174ca7268dbdd1538a5
Contents?: true
Size: 564 Bytes
Versions: 44
Compression:
Stored size: 564 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: src/nucleotide_count.c src/nucleotide_count.h test/test_nucleotide_count.c @echo Compiling $@ @cc $(CFLAGS) src/nucleotide_count.c test/vendor/unity.c test/test_nucleotide_count.c -o tests.out
Version data entries
44 entries across 44 versions & 1 rubygems