Sha256: 68e89958baec9ab9cc44d857f1db17e656979613f83e76eeec8006e39063939f

Contents?: true

Size: 519 Bytes

Versions: 44

Compression:

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

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
trackler-2.2.1.75 tracks/c/exercises/isogram/makefile
trackler-2.2.1.74 tracks/c/exercises/isogram/makefile
trackler-2.2.1.73 tracks/c/exercises/isogram/makefile
trackler-2.2.1.72 tracks/c/exercises/isogram/makefile