Initial
This commit is contained in:
10
test/makefile
Normal file
10
test/makefile
Normal file
@ -0,0 +1,10 @@
|
||||
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
|
||||
Reference in New Issue
Block a user