Sha256: 72cabdf9a5b0d99befb122d54e294394780dae3d5e4220202d6d149e7326220a
Contents?: true
Size: 522 Bytes
Versions: 2
Compression:
Stored size: 522 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 -f *.o *.out tests.out: test/test_gigasecond.c src/gigasecond.c src/gigasecond.h @echo Compiling $@ @cc $(CFLAGS) src/gigasecond.c test/vendor/unity.c test/test_gigasecond.c -o tests.out
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
trackler-2.2.1.71 | tracks/c/exercises/gigasecond/makefile |
trackler-2.2.1.70 | tracks/c/exercises/gigasecond/makefile |