mirror of
https://gitee.com/willfree/http_vpn.git
synced 2026-06-03 08:16:51 +08:00
23 lines
628 B
Makefile
23 lines
628 B
Makefile
testMain: testMain.o QueuePool.o PriorQueue.o r_queue.o
|
|
g++ -o testMain testMain.o QueuePool.o PriorQueue.o r_queue.o
|
|
testMain.o : testMain.cpp
|
|
g++ -c -g testMain.cpp
|
|
QueuePool.o: QueuePool.cpp QueuePool.h
|
|
g++ -c -g QueuePool.cpp
|
|
PriorQueue.o : PriorQueue.cpp PriorQueue.h
|
|
g++ -c -g PriorQueue.cpp
|
|
r_queue.o: r_queue.cpp r_queue.h
|
|
g++ -c -g r_queue.cpp
|
|
|
|
clean :
|
|
rm -rf *.o testMain
|
|
|
|
# testMain: PriorQueue.o testMain.o
|
|
# g++ -o testMain PriorQueue.o testMain.o
|
|
# PriorQueue.o : PriorQueue.cpp PriorQueue.h
|
|
# g++ -c PriorQueue.cpp
|
|
# testMain.o : testMain.cpp
|
|
# g++ -c testMain.cpp
|
|
|
|
# clean :
|
|
# rm -rf *.o testMain
|