11 lines
164 B
Makefile
11 lines
164 B
Makefile
OOUTDIR = o/
|
|
|
|
output: main.o
|
|
g++ -std=c++0x -Wall $(OOUTDIR)main.o -o a.out
|
|
|
|
main.o: main.cpp
|
|
g++ -c main.cpp -o $(OOUTDIR)main.o
|
|
|
|
clean:
|
|
rm $(OOUTDIR)*.o a.out
|