Sha256: 46b6bd825b2892e3156e11191f575a0eaed2ceca20738fac226060c01aca943b
Contents?: true
Size: 499 Bytes
Versions: 8
Compression:
Stored size: 499 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_etl.c src/etl.c src/etl.h @echo Compiling $@ @cc $(CFLAGS) src/etl.c test/vendor/unity.c test/test_etl.c -o tests.out
Version data entries
8 entries across 8 versions & 1 rubygems