EXEC=star3
OBJFILE=${EXEC}.o

%.o:%.cpp
	g++ $< -c -o $@

${EXEC}:${OBJFILE}
	g++ ${OBJFILE} -o ${EXEC} `allegro-config --libs`
