-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
46 lines (38 loc) · 1.2 KB
/
Makefile
File metadata and controls
46 lines (38 loc) · 1.2 KB
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
46
########################################################################
# #
# Makefile for Genomon-fusion #
# #
########################################################################
include Makefile.in
.PHONY: all tool ref src download clean distclean
all: download tool src
tool:
if [ $(K_COMP) -eq 1 ]; then \
echo '. /work/system/Env_base; cd tools; make all' | pjsub --interact --rsc-list "node=1" --rsc-list "elapse=6:00:00" ; \
else \
(cd tools ; make all) \
fi
ref:
if [ $(K_COMP) -eq 1 ]; then \
echo '. /work/system/Env_base; cd ref; make all' | pjsub --interact --rsc-list "node=1" --rsc-list "elapse=6:00:00" ; \
else \
(cd ref ; make all) \
fi
(cd db ; make all)
src:
(cd src ; make)
download:
(cd tools ; make download)
(cd db ; make download)
(cd ref ; make download)
clean:
(cd src ; make clean)
(cd tools ; make clean)
(cd ref ; make clean)
(cd db ; make clean)
distclean:
(cd src ; make distclean)
(cd tools ; make distclean)
(cd ref ; make distclean)
(cd db ; make distclean)
@rm -f bin/*