############
EXEC=normalmap

$(EXEC):src/$(EXEC)

src/$(EXEC):
	cd src && make && cd ..

clean:
	rm -f $(EXEC)
	cd src && make clean && cd ..
 

