Sha256: 91854325aaa590809c2f0755372e7ba8535cf8ca9c4ee3e4904e77787892b615

Contents?: true

Size: 340 Bytes

Versions: 286

Compression:

Stored size: 340 Bytes

Contents

CFLAGS  = -std=c99
CFLAGS += -Wall
CFLAGS += -Wextra
CFLAGS += -pedantic
CFLAGS += -Werror


test: tests.out
	@./tests.out

clean:
	rm -f *.o *.out

tests.out: test/test_binary_search.c src/binary_search.c src/binary_search.h
	@echo Compiling $@
	@cc $(CFLAGS) src/binary_search.c test/vendor/unity.c test/test_binary_search.c -o tests.out

Version data entries

286 entries across 286 versions & 1 rubygems

Version Path
trackler-1.0.2.1 tracks/c/exercises/binary-search/makefile
trackler-1.0.2.0 tracks/c/exercises/binary-search/makefile
trackler-1.0.1.2 tracks/c/exercises/binary-search/makefile
trackler-1.0.1.1 tracks/c/exercises/binary-search/makefile
trackler-1.0.1.0 tracks/c/exercises/binary-search/makefile
trackler-1.0.0.1 tracks/c/exercises/binary-search/makefile