#!/usr/bin/make -f

CFLAGS	= -O2 -D_FILE_OFFSET_BITS=64 -Wall
LDFLAGS	+= -lpolarssl

a.out: programs/hash/hello.c
	$(CC) $(CFLAGS) $(OFLAGS) $< $(LDFLAGS)
	@echo "Build test of $< succeeded"
	./a.out
	@rm -f a.out
