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