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