# Makefile for Hashmap Activity

hashmap: hashmap.c
	gcc -g -o hashmap hashmap.c
	
test: clean hashmap
	./hashmap
clean:
	rm -f hashmap 
