Sha256: bf7302c566509f942272906a53996eb229ab76ad86fc3174ca7268dbdd1538a5

Contents?: true

Size: 564 Bytes

Versions: 44

Compression:

Stored size: 564 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: src/nucleotide_count.c src/nucleotide_count.h test/test_nucleotide_count.c 
	@echo Compiling $@
	@cc $(CFLAGS) src/nucleotide_count.c test/vendor/unity.c test/test_nucleotide_count.c -o tests.out

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
trackler-2.2.1.116 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.115 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.114 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.113 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.111 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.110 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.109 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.108 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.107 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.106 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.105 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.104 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.103 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.102 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.101 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.100 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.99 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.98 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.97 tracks/c/exercises/nucleotide-count/makefile
trackler-2.2.1.96 tracks/c/exercises/nucleotide-count/makefile