-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (24 loc) · 745 Bytes
/
Makefile
File metadata and controls
32 lines (24 loc) · 745 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
############################################################
#
# MAKE the proclens PIPELINE or API
#
############################################################
# xshear settings
XPATH = submodules/xshear
XBRANCH = redmapper
############################################################
# install the python module and dependencies
pipeline: xshear logpath
python setup.py develop --user
# installing the latest xshear
xshear:
git submodule init $(XPATH)
git submodule update $(XPATH)
(cd $(XPATH) && git checkout $(XBRANCH) && git pull)
make -C $(XPATH) install prefix=./
# writes absolute path of program direcory
logpath:
echo project_path: $(CURDIR)/ > $(HOME)/.xpipe.yml
# Clears submodules
deinit:
git submodule deinit -f .