Skip to content

Commit

Permalink
Add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
leohotfn committed May 15, 2017
1 parent 43cca1d commit 614cec5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Reuzel: test.o Thread.o ThreadPool.o
g++ -o Reuzel test.o Thread.o ThreadPool.o -lpthread
rm *.o
test.o: ./test/test.cpp ./src/ThreadPool.h
g++ -c -std=c++11 ./test/test.cpp
Thread.o: ./src/Thread.cpp
g++ -c -std=c++11 ./src/Thread.cpp
ThreadPool.o: ./src/ThreadPool.cpp ./src/Thread.h
g++ -c -std=c++11 ./src/ThreadPool.cpp

0 comments on commit 614cec5

Please sign in to comment.