-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile
More file actions
41 lines (31 loc) · 810 Bytes
/
Makefile
File metadata and controls
41 lines (31 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
all: .PHONY
embaked: .PHONY
./emCreator.py
du-h: .PHONY
du -h --max-depth=1 | tee du-h.temp
mv du-h.temp du-h
install_mg5:
test -e mg5 || cp -r mg5.template mg5
cd mg5; make.py
install_ma5:
test -e ma5 || cp -r ma5.template ma5
cd ma5; make.py
install_cm2:
test -e hepmc2 || cp -r hepmc2.template hepmc2
cd hepmc2; make.py
test -e cm2 || cp -r cm2.template cm2
cd cm2; make.py
pull_from_clip:
mkdir -p embaked
scp -r clip-login-1:git/em-creator/embaked/\*embaked embaked
# rm -rf cm2tempdir
# scp -r clip-login-1:git/em-creator/cm2tempdir .
# tar czvf cm2tempdir.tar.gz cm2tempdir/
backup_embaked:
./utils/backupEmbaked.py
clean:
rm -rf temp/ ../smodels-utils/clip/temp/ $(OUTPUTS) T*jet.* .lock*
# purging is cleaning thoroughly
purge: clean
rm -rf mg5results gambit_results
.PHONY: