# Makefile for VgaGames: hash/

all: hash.o

clean:
	rm -f *.o


hash.o: hash.c hash.h
	$(CC) $(CFLAGS) $(SOFLAGS) -c hash.c

