Sha256: a0d498db42372cb04d12054eec8f83177974db6766469723713c3b4698ca53bb
Contents?: true
Size: 608 Bytes
Versions: 63
Compression:
Stored size: 608 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 LDFLAGS = -lm 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_run_length_encoding.c src/run_length_encoding.c src/run_length_encoding.h @echo Compiling $@ @$(CC) $(CFLAGS) src/run_length_encoding.c test/vendor/unity.c test/test_run_length_encoding.c -o tests.out $(LDFLAGS)
Version data entries
63 entries across 63 versions & 1 rubygems