5 lines
66 B
Makefile
5 lines
66 B
Makefile
all: main.cpp
|
|
g++ -g -Wall -o main main.cpp
|
|
|
|
clean:
|
|
$(RM) main
|