-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmakefile
48 lines (43 loc) · 993 Bytes
/
makefile
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
47
48
SUBDIRS = \
. \
tools/bamCheckBin \
tools/bamGenome \
tools/bamView \
tools/bamToBigWig \
tools/bigWigCountsToQuantiles \
tools/bigWigEditChromNames \
tools/bigWigExtract \
tools/bigWigExtractChroms \
tools/bigWigGenome \
tools/bigWigHistogram \
tools/bigWigMap \
tools/bigWigNil \
tools/bigWigPositive \
tools/bigWigQuantileNormalize \
tools/bigWigQuery \
tools/bigWigQuerySequence \
tools/bigWigStatistics \
tools/chromHmmTablesToBigWig \
tools/countKmers \
tools/memeExtract \
tools/drawGenomicRegions \
tools/fastaExtract \
tools/fastaUnresolvedRegions \
tools/gtfToBed \
tools/observedOverExpectedCpG \
tools/pwmScanSequences \
tools/pwmScanRegions \
tools/segmentationDifferential
all:
build:
@for i in $(SUBDIRS); do \
echo "Building $$i"; (cd $$i && go build); \
done
install:
@for i in $(SUBDIRS); do \
echo "Installing $$i"; (cd $$i && go install); \
done
test:
@for i in $(SUBDIRS); do \
echo "Testing $$i"; (cd $$i && go test); \
done