9 lines
121 B
Plaintext
9 lines
121 B
Plaintext
# C++ compiler flags.
|
|
|
|
CXXFLAGS = -Wall
|
|
|
|
# Top-level rule to compile everything.
|
|
|
|
all:
|
|
g++ $(CXXFLAGS) main.cpp -o main
|