summaryrefslogtreecommitdiffstats
path: root/SD-VBS/Makefile
blob: 9834d1b53d57aa68510a7031034f6dfdd47b5829 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
include common/makefiles/Makefile.include
include common/makefiles/Makefile.recurse

table:
	@echo Generate Table for cycles
	@find cycles/*/ -iname "C_*.txt" -exec python common/support/buildTable.py {} \; | tee cycles.txt
	@find cycles/*/ -iname "Matlab_*.txt" -exec python common/support/buildTable.py {} \; | tee MCycles.txt
	@cat MCycles.txt >> cycles.txt
	@rm MCycles.txt
	@mv cycles.txt cycles/.

timetable:
	@echo Generate Timetable
	@find times/*/ -iname "T_*.txt" -exec python common/support/buildTimeTable.py {} \; | tee times.txt
	@mv times.txt times/.

preload-timetable:
	@echo Generate Timetable
	@find preload-times/*/ -iname "T_*.txt" -exec python common/support/buildTimeTable.py {} \; | tee times.txt
	@mv times.txt preload-times/.