SRC = *.cpp CC = g++ #ARGS = -lstdc++ -g -Wall ARGS = -g -Wall compile: ${SRC} ${CC} ${ARGS} $^ -o a.out run: compile @./a.out