-
Notifications
You must be signed in to change notification settings - Fork 447
/
htslib.mk
197 lines (177 loc) · 6.81 KB
/
htslib.mk
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
# Makefile rules useful for third-party code using htslib's public API.
#
# Copyright (C) 2013-2017, 2019, 2021 Genome Research Ltd.
#
# Author: John Marshall <[email protected]>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
# The makefile fragment included below provides variables that can be used
# to express dependencies on headers supplied by an in-development htslib.
# If your source file foo.c #includes <htslib/hts.h> and <htslib/kstring.h>,
# you can write the correct prerequisites for foo.o as:
#
# HTSDIR = <path to htslib top-level (build) directory>
# include $(HTSDIR)/htslib.mk
#
# foo.o: foo.c $(htslib_hts_h) $(htslib_kstring_h)
HTSSRCDIR = $(HTSDIR)
HTSPREFIX = $(HTSSRCDIR)/
include $(HTSDIR)/htslib_vars.mk
# This file provides the HTSCODECS_SOURCES variable. It may not be present
# in a freshly checked-out htslib, so is only included if available. The
# absence is unlikely to cause a problem as there will be plenty of other
# missing files that will trigger a build in htslib, and when that happens
# htslib's makefile will create it.
-include $(HTSDIR)/htscodecs.mk
# Rules for rebuilding an in-development htslib's static and shared libraries.
# If your program foo links with libhts, adding the appropriate prerequisite
# will cause the library to be rebuilt as necessary:
#
# foo: foo.o $(HTSDIR)/libhts.a
#
# or similarly if your target requires any of the tools supplied:
#
# bar.bed.bgz.tbi: bar.bed.bgz $(HTSDIR)/tabix
# $(HTSDIR)/tabix -p bed bar.bed.bgz
HTSLIB_PUBLIC_HEADERS = \
$(HTSSRCDIR)/htslib/bgzf.h \
$(HTSSRCDIR)/htslib/cram.h \
$(HTSSRCDIR)/htslib/faidx.h \
$(HTSSRCDIR)/htslib/hfile.h \
$(HTSSRCDIR)/htslib/hts.h \
$(HTSSRCDIR)/htslib/hts_defs.h \
$(HTSSRCDIR)/htslib/hts_endian.h \
$(HTSSRCDIR)/htslib/hts_expr.h \
$(HTSSRCDIR)/htslib/hts_log.h \
$(HTSSRCDIR)/htslib/hts_os.h \
$(HTSSRCDIR)/htslib/kbitset.h \
$(HTSSRCDIR)/htslib/kfunc.h \
$(HTSSRCDIR)/htslib/khash.h \
$(HTSSRCDIR)/htslib/khash_str2int.h \
$(HTSSRCDIR)/htslib/klist.h \
$(HTSSRCDIR)/htslib/kseq.h \
$(HTSSRCDIR)/htslib/ksort.h \
$(HTSSRCDIR)/htslib/kstring.h \
$(HTSSRCDIR)/htslib/regidx.h \
$(HTSSRCDIR)/htslib/sam.h \
$(HTSSRCDIR)/htslib/synced_bcf_reader.h \
$(HTSSRCDIR)/htslib/tbx.h \
$(HTSSRCDIR)/htslib/thread_pool.h \
$(HTSSRCDIR)/htslib/vcf.h \
$(HTSSRCDIR)/htslib/vcf_sweep.h \
$(HTSSRCDIR)/htslib/vcfutils.h
HTSLIB_ALL = \
$(HTSLIB_PUBLIC_HEADERS) \
$(HTSSRCDIR)/bcf_sr_sort.c \
$(HTSSRCDIR)/bcf_sr_sort.h \
$(HTSSRCDIR)/bgzf.c \
$(HTSDIR)/config.h \
$(HTSSRCDIR)/errmod.c \
$(HTSSRCDIR)/faidx.c \
$(HTSSRCDIR)/header.c \
$(HTSSRCDIR)/header.h \
$(HTSSRCDIR)/hfile_internal.h \
$(HTSSRCDIR)/hfile.c \
$(HTSSRCDIR)/hfile_gcs.c \
$(HTSSRCDIR)/hfile_libcurl.c \
$(HTSSRCDIR)/hfile_s3.c \
$(HTSSRCDIR)/hfile_s3_write.c \
$(HTSSRCDIR)/hts.c \
$(HTSSRCDIR)/hts_expr.c \
$(HTSSRCDIR)/hts_internal.h \
$(HTSSRCDIR)/hts_os.c \
$(HTSSRCDIR)/kfunc.c \
$(HTSSRCDIR)/kstring.c \
$(HTSSRCDIR)/md5.c \
$(HTSSRCDIR)/multipart.c \
$(HTSSRCDIR)/plugin.c \
$(HTSSRCDIR)/probaln.c \
$(HTSSRCDIR)/realn.c \
$(HTSSRCDIR)/regidx.c \
$(HTSSRCDIR)/region.c \
$(HTSSRCDIR)/sam.c \
$(HTSSRCDIR)/sam_internal.h \
$(HTSSRCDIR)/synced_bcf_reader.c \
$(HTSSRCDIR)/tbx.c \
$(HTSSRCDIR)/textutils.c \
$(HTSSRCDIR)/textutils_internal.h \
$(HTSSRCDIR)/thread_pool.c \
$(HTSSRCDIR)/thread_pool_internal.h \
$(HTSSRCDIR)/vcf.c \
$(HTSSRCDIR)/vcf_sweep.c \
$(HTSSRCDIR)/vcfutils.c \
$(HTSSRCDIR)/cram/cram.h \
$(HTSSRCDIR)/cram/cram_codecs.c \
$(HTSSRCDIR)/cram/cram_codecs.h \
$(HTSSRCDIR)/cram/cram_decode.c \
$(HTSSRCDIR)/cram/cram_decode.h \
$(HTSSRCDIR)/cram/cram_encode.c \
$(HTSSRCDIR)/cram/cram_encode.h \
$(HTSSRCDIR)/cram/cram_external.c \
$(HTSSRCDIR)/cram/cram_index.c \
$(HTSSRCDIR)/cram/cram_index.h \
$(HTSSRCDIR)/cram/cram_io.c \
$(HTSSRCDIR)/cram/cram_io.h \
$(HTSSRCDIR)/cram/cram_samtools.h \
$(HTSSRCDIR)/cram/cram_stats.c \
$(HTSSRCDIR)/cram/cram_stats.h \
$(HTSSRCDIR)/cram/cram_structs.h \
$(HTSSRCDIR)/cram/mFILE.c \
$(HTSSRCDIR)/cram/mFILE.h \
$(HTSSRCDIR)/cram/misc.h \
$(HTSSRCDIR)/cram/open_trace_file.c \
$(HTSSRCDIR)/cram/open_trace_file.h \
$(HTSSRCDIR)/cram/os.h \
$(HTSSRCDIR)/cram/pooled_alloc.c \
$(HTSSRCDIR)/cram/pooled_alloc.h \
$(HTSSRCDIR)/cram/string_alloc.c \
$(HTSSRCDIR)/cram/string_alloc.h \
$(HTSSRCDIR)/os/lzma_stub.h \
$(HTSSRCDIR)/os/rand.c \
$(HTSCODECS_SOURCES)
$(HTSDIR)/config.h:
+cd $(HTSDIR) && $(MAKE) config.h
$(HTSDIR)/hts-object-files : $(HTSLIB_ALL)
+cd $(HTSDIR) && $(MAKE) hts-object-files
$(HTSDIR)/libhts.a: $(HTSDIR)/hts-object-files
+cd $(HTSDIR) && $(MAKE) lib-static
$(HTSDIR)/libhts.so: $(HTSLIB_ALL)
+cd $(HTSDIR) && $(MAKE) lib-shared
$(HTSDIR)/libhts.dylib $(HTSDIR)/libhts.dll.a $(HTSDIR)/hts.dll.a: $(HTSDIR)/hts-object-files
+cd $(HTSDIR) && $(MAKE) lib-shared
$(HTSDIR)/bgzip: $(HTSSRCDIR)/bgzip.c $(HTSLIB_PUBLIC_HEADERS) $(HTSDIR)/libhts.a
+cd $(HTSDIR) && $(MAKE) bgzip
$(HTSDIR)/htsfile: $(HTSSRCDIR)/htsfile.c $(HTSLIB_PUBLIC_HEADERS) $(HTSDIR)/libhts.a
+cd $(HTSDIR) && $(MAKE) htsfile
$(HTSDIR)/tabix: $(HTSSRCDIR)/tabix.c $(HTSLIB_PUBLIC_HEADERS) $(HTSDIR)/libhts.a
+cd $(HTSDIR) && $(MAKE) tabix
$(HTSDIR)/annot-tsv: $(HTSSRCDIR)/annot-tsv.c $(HTSLIB_PUBLIC_HEADERS) $(HTSDIR)/libhts.a
+cd $(HTSDIR) && $(MAKE) annot-tsv
$(HTSDIR)/htslib_static.mk: $(HTSDIR)/htslib.pc.tmp
+cd $(HTSDIR) && $(MAKE) htslib_static.mk
$(HTSDIR)/htslib.pc.tmp:
+cd $(HTSDIR) && $(MAKE) htslib.pc.tmp
# Rules for phony targets. You may wish to have your corresponding phony
# targets invoke these in addition to their own recipes:
#
# clean: clean-htslib
all-htslib check-htslib clean-htslib distclean-htslib install-htslib mostlyclean-htslib plugins-htslib test-htslib testclean-htslib:
+cd $(HTSDIR) && $(MAKE) $(@:-htslib=)
.PHONY: all-htslib check-htslib clean-htslib distclean-htslib install-htslib
.PHONY: mostlyclean-htslib plugins-htslib test-htslib testclean-htslib