Sha256: 7ca81068debe20e36669cfe378de99443f57c89e52b77787ac474f2211f034b2
Contents?: true
Size: 586 Bytes
Versions: 30
Compression:
Stored size: 586 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_complex_numbers.c src/complex_numbers.c src/complex_numbers.h @echo Compiling $@ @cc $(CFLAGS) src/complex_numbers.c test/vendor/unity.c test/test_complex_numbers.c $(LDFLAGS) -o tests.out
Version data entries
30 entries across 30 versions & 1 rubygems