CFLAGS=-Wall -g

######################################################################
# Standard Targets #
####################

default: test

all: 

test: hash-utest

examples: hashfun-examples

######################################################################
# Tests #
#########

hash-utest: hash-utest.o hash.o
	$(LINK.o) -o $@ $^


######################################################################
# Examples #
############

hashfun-examples: hashfun-examples.o hash.o
	$(LINK.o) -o $@ $^


######################################################################
# Dependencies #
################

hash.o: hash.h
hash-utest.o: hash.h
