master makefile
 1SRC=cotton
 2LIB=-lbe
 3SRCS=src/cotton.c src/interpreter.c src/cottonwindow.cpp src/main.c
 4CFLAG=-g -Wall -Wextra
 5
 6${SRC}:
 7	cc ${SRCS} ${CFLAG} ${LIB} -o ${SRC}
 8
 9clean:
10	rm ${SRC}