Files
http_vpn/http_vpn_20191209/ccn_p2p/PriorQueuePool/makefile
T
2020-02-23 20:44:48 +08:00

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