mms-sim/makefile

11 lines
131 B
Makefile

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