forked from teuben/qac2024
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
45 lines (27 loc) · 817 Bytes
/
Makefile
File metadata and controls
45 lines (27 loc) · 817 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
42
43
44
45
#
URL1 = https://github.com/CasaGuides/CASA-Guides-Script-Extractor
URL2 = ftp://ftp.cv.nrao.edu/pub/casaguides/analysis_scripts.tar
URL3 = https://github.com/teuben/QAC
URL4 = https://github.com/teuben/DataComb
URL5 = https://github.com/akleroy/phangs_imaging_scripts
GIT_DIRS = CASA-Guides-Script-Extractor analysis_scripts.tar QAC DataComb phangs_imaging_scripts
.PHONY: help install git
## help: This Help
help : Makefile
@sed -n 's/^##//p' $<
install:
@echo "none yet"
## git: Get all git repos for this install
git: $(GIT_DIRS)
@echo "GIT_DIRS: $(GIT_DIRS)"
@echo Last git: `date` >> git.log
CASA-Guides-Script-Extractor:
git clone $(URL1)
analysis_scripts.tar:
wget $(URL2)
QAC:
git clone $(URL3)
DataComb:
git clone $(URL4)
phangs_imaging_scripts:
git clone $(URL5)