25 lines
1.1 KiB
Makefile
25 lines
1.1 KiB
Makefile
|
|
################################################################################
|
|
# extract join delay measurements
|
|
################################################################################s
|
|
|
|
extractJoinDelay: extractJoinDelay_pre extractJoinDelay_main extractJoinDelay_post
|
|
|
|
extractJoinDelay_pre:
|
|
|
|
extractJoinDelay_main:
|
|
@echo -e "\n Extract join delay measurements"
|
|
@echo "================================================================="
|
|
cd simulations && python extractJoinDelay.py joinDelay 6 10
|
|
cd simulations && python extractJoinDelay.py joinDelay 6 100
|
|
cd simulations && python extractJoinDelay.py joinDelay 6 1000
|
|
cd simulations && python extractJoinDelay.py joinDelay 12 10
|
|
cd simulations && python extractJoinDelay.py joinDelay 12 100
|
|
cd simulations && python extractJoinDelay.py joinDelay 12 1000
|
|
cd simulations && python extractJoinDelay.py joinDelay 6 curve
|
|
cd simulations && python extractJoinDelay.py joinDelay 12 curve
|
|
cd simulations && python extractJoinDelay.py joinDelay 6 bars
|
|
cd simulations && python extractJoinDelay.py joinDelay 12 bars
|
|
|
|
|
|
extractJoinDelay_post: |