source: ETALON/CLIO/control/makefile @ 744

Last change on this file since 744 was 744, checked in by delerue, 7 years ago

CLIO control system updated

File size: 394 bytes
Line 
1DATAFILES=$(wildcard data_CLIO_*.txt)
2
3.PHONY: all all_done clean_done
4
5all: all_done clean_done
6
7all_done: $(DATAFILES:.txt=.done) 
8
9%.done: %.txt
10        touch ~/acquisition_data/makefile_runing.date
11        echo $?
12        mv $? ../processed/
13        cd ../processed && python ~/control/run_read_data.py $?
14        cd ../processed && ls -lart | tail -8
15        pwd
16        ls -lart | tail -5
17
18clean_done:
19        rm -f *.done  ../processed/*.done
Note: See TracBrowser for help on using the repository browser.