CC = g++ 
LNK = -lLightflow
CNV = convert

all: ball.jpg
	
ball.jpg: ball.tga
	$(CNV) ball.tga ball.jpg

ball.tga: simplescene
	simplescene

simplescene: main.cpp
	$(CC) $(LNK) main.cpp -o simplescene

