#compiler name
CC = gcc

#linker flags
LINK = 

all:
	$(CC) rainsim.c -o rainsim $(LINK)
