1 | # Copyright (C) 2015, UChicago Argonne, LLC |
---|
2 | # All Rights Reserved |
---|
3 | # |
---|
4 | # Generic IO (ANL-15-066) |
---|
5 | # Hal Finkel, Argonne National Laboratory |
---|
6 | # |
---|
7 | # OPEN SOURCE LICENSE |
---|
8 | # |
---|
9 | # Under the terms of Contract No. DE-AC02-06CH11357 with UChicago Argonne, |
---|
10 | # LLC, the U.S. Government retains certain rights in this software. |
---|
11 | # |
---|
12 | # Redistribution and use in source and binary forms, with or without |
---|
13 | # modification, are permitted provided that the following conditions are met: |
---|
14 | # |
---|
15 | # 1. Redistributions of source code must retain the above copyright notice, |
---|
16 | # this list of conditions and the following disclaimer. |
---|
17 | # |
---|
18 | # 2. Redistributions in binary form must reproduce the above copyright |
---|
19 | # notice, this list of conditions and the following disclaimer in the |
---|
20 | # documentation and/or other materials provided with the distribution. |
---|
21 | # |
---|
22 | # 3. Neither the names of UChicago Argonne, LLC or the Department of Energy |
---|
23 | # nor the names of its contributors may be used to endorse or promote |
---|
24 | # products derived from this software without specific prior written |
---|
25 | # permission. |
---|
26 | # |
---|
27 | # ***************************************************************************** |
---|
28 | # |
---|
29 | # DISCLAIMER |
---|
30 | # THE SOFTWARE IS SUPPLIED “AS IS” WITHOUT WARRANTY OF ANY KIND. NEITHER THE |
---|
31 | # UNTED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT OF ENERGY, NOR |
---|
32 | # UCHICAGO ARGONNE, LLC, NOR ANY OF THEIR EMPLOYEES, MAKES ANY WARRANTY, |
---|
33 | # EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR RESPONSIBILITY FOR THE |
---|
34 | # ACCURACY, COMPLETENESS, OR USEFULNESS OF ANY INFORMATION, DATA, APPARATUS, |
---|
35 | # PRODUCT, OR PROCESS DISCLOSED, OR REPRESENTS THAT ITS USE WOULD NOT INFRINGE |
---|
36 | # PRIVATELY OWNED RIGHTS. |
---|
37 | # |
---|
38 | # ***************************************************************************** |
---|
39 | |
---|
40 | CC = gcc |
---|
41 | CXX = g++ |
---|
42 | |
---|
43 | MPICC = mpicc |
---|
44 | MPICXX = mpicxx |
---|
45 | |
---|
46 | all: fe-progs mpi-progs |
---|
47 | sql: fe-sqlite |
---|
48 | |
---|
49 | BLOSC_CPPFLAGS := \ |
---|
50 | -Ithirdparty/blosc \ |
---|
51 | -DHAVE_LZ4 -DHAVE_SNAPPY -DHAVE_ZLIB -DHAVE_ZSTD \ |
---|
52 | -Ithirdparty/blosc/internal-complibs/zlib-1.2.8 \ |
---|
53 | -Ithirdparty/blosc/internal-complibs/lz4-1.7.2 \ |
---|
54 | -Ithirdparty/blosc/internal-complibs/snappy-1.1.1 \ |
---|
55 | -Ithirdparty/blosc/internal-complibs/zstd-0.7.4 \ |
---|
56 | -Ithirdparty/blosc/internal-complibs/zstd-0.7.4/legacy \ |
---|
57 | -Ithirdparty/blosc/internal-complibs/zstd-0.7.4/compress \ |
---|
58 | -Ithirdparty/blosc/internal-complibs/zstd-0.7.4/common \ |
---|
59 | -Ithirdparty/blosc/internal-complibs/zstd-0.7.4/dictBuilder \ |
---|
60 | -Ithirdparty/blosc/internal-complibs/zstd-0.7.4/decompress |
---|
61 | |
---|
62 | BASE_CPPFLAGS := $(BLOSC_CPPFLAGS) -D__STDC_CONSTANT_MACROS |
---|
63 | |
---|
64 | FEDIR = frontend |
---|
65 | FE_CFLAGS := -g -fPIC -O3 -fopenmp |
---|
66 | FE_CPPFLAGS := $(BASE_CPPFLAGS) -Ithirdparty/sqlite -DGENERICIO_NO_MPI |
---|
67 | |
---|
68 | MPIDIR = mpi |
---|
69 | MPI_CFLAGS := -g -O3 -fopenmp |
---|
70 | MPI_CPPFLAGS := $(BASE_CPPFLAGS) |
---|
71 | |
---|
72 | $(FEDIR): |
---|
73 | mkdir -p $(FEDIR) |
---|
74 | |
---|
75 | $(FEDIR)/%.o: %.c | $(FEDIR) |
---|
76 | mkdir -p $(dir $@) |
---|
77 | $(CC) $(FE_CFLAGS) $(FE_CPPFLAGS) -c -o $@ $< |
---|
78 | |
---|
79 | $(FEDIR)/%.o: %.cxx | $(FEDIR) |
---|
80 | mkdir -p $(dir $@) |
---|
81 | $(CXX) $(FE_CFLAGS) $(FE_CPPFLAGS) -c -o $@ $< |
---|
82 | |
---|
83 | BLOSC_O := \ |
---|
84 | thirdparty/blosc/blosc.o \ |
---|
85 | thirdparty/blosc/blosclz.o \ |
---|
86 | thirdparty/blosc/shuffle.o \ |
---|
87 | thirdparty/blosc/bitshuffle-generic.o \ |
---|
88 | thirdparty/blosc/shuffle-generic.o \ |
---|
89 | thirdparty/blosc/internal-complibs/zlib-1.2.8/gzwrite.o \ |
---|
90 | thirdparty/blosc/internal-complibs/zlib-1.2.8/crc32.o \ |
---|
91 | thirdparty/blosc/internal-complibs/zlib-1.2.8/inffast.o \ |
---|
92 | thirdparty/blosc/internal-complibs/zlib-1.2.8/zutil.o \ |
---|
93 | thirdparty/blosc/internal-complibs/zlib-1.2.8/infback.o \ |
---|
94 | thirdparty/blosc/internal-complibs/zlib-1.2.8/deflate.o \ |
---|
95 | thirdparty/blosc/internal-complibs/zlib-1.2.8/inflate.o \ |
---|
96 | thirdparty/blosc/internal-complibs/zlib-1.2.8/gzread.o \ |
---|
97 | thirdparty/blosc/internal-complibs/zlib-1.2.8/gzlib.o \ |
---|
98 | thirdparty/blosc/internal-complibs/zlib-1.2.8/gzclose.o \ |
---|
99 | thirdparty/blosc/internal-complibs/zlib-1.2.8/uncompr.o \ |
---|
100 | thirdparty/blosc/internal-complibs/zlib-1.2.8/compress.o \ |
---|
101 | thirdparty/blosc/internal-complibs/zlib-1.2.8/inftrees.o \ |
---|
102 | thirdparty/blosc/internal-complibs/zlib-1.2.8/trees.o \ |
---|
103 | thirdparty/blosc/internal-complibs/zlib-1.2.8/adler32.o \ |
---|
104 | thirdparty/blosc/internal-complibs/lz4-1.7.2/lz4.o \ |
---|
105 | thirdparty/blosc/internal-complibs/lz4-1.7.2/lz4hc.o \ |
---|
106 | thirdparty/blosc/internal-complibs/zstd-0.7.4/legacy/zstd_v01.o \ |
---|
107 | thirdparty/blosc/internal-complibs/zstd-0.7.4/legacy/zstd_v02.o \ |
---|
108 | thirdparty/blosc/internal-complibs/zstd-0.7.4/legacy/zstd_v03.o \ |
---|
109 | thirdparty/blosc/internal-complibs/zstd-0.7.4/legacy/zstd_v06.o \ |
---|
110 | thirdparty/blosc/internal-complibs/zstd-0.7.4/legacy/zstd_v04.o \ |
---|
111 | thirdparty/blosc/internal-complibs/zstd-0.7.4/legacy/zstd_v05.o \ |
---|
112 | thirdparty/blosc/internal-complibs/zstd-0.7.4/compress/fse_compress.o \ |
---|
113 | thirdparty/blosc/internal-complibs/zstd-0.7.4/compress/zstd_compress.o \ |
---|
114 | thirdparty/blosc/internal-complibs/zstd-0.7.4/compress/huf_compress.o \ |
---|
115 | thirdparty/blosc/internal-complibs/zstd-0.7.4/compress/zbuff_compress.o \ |
---|
116 | thirdparty/blosc/internal-complibs/zstd-0.7.4/common/entropy_common.o \ |
---|
117 | thirdparty/blosc/internal-complibs/zstd-0.7.4/common/xxhash.o \ |
---|
118 | thirdparty/blosc/internal-complibs/zstd-0.7.4/common/zstd_common.o \ |
---|
119 | thirdparty/blosc/internal-complibs/zstd-0.7.4/common/fse_decompress.o \ |
---|
120 | thirdparty/blosc/internal-complibs/zstd-0.7.4/dictBuilder/zdict.o \ |
---|
121 | thirdparty/blosc/internal-complibs/zstd-0.7.4/dictBuilder/divsufsort.o \ |
---|
122 | thirdparty/blosc/internal-complibs/zstd-0.7.4/decompress/zstd_decompress.o \ |
---|
123 | thirdparty/blosc/internal-complibs/zstd-0.7.4/decompress/huf_decompress.o \ |
---|
124 | thirdparty/blosc/internal-complibs/zstd-0.7.4/decompress/zbuff_decompress.o \ |
---|
125 | thirdparty/blosc/internal-complibs/snappy-1.1.1/snappy-c.o \ |
---|
126 | thirdparty/blosc/internal-complibs/snappy-1.1.1/snappy.o \ |
---|
127 | thirdparty/blosc/internal-complibs/snappy-1.1.1/snappy-sinksource.o \ |
---|
128 | thirdparty/blosc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.o |
---|
129 | |
---|
130 | FE_BLOSC_O := $(addprefix $(FEDIR)/,$(BLOSC_O)) |
---|
131 | |
---|
132 | $(FEDIR)/GenericIOPrint: $(FEDIR)/GenericIOPrint.o $(FEDIR)/GenericIO.o $(FE_BLOSC_O) |
---|
133 | $(CXX) $(FE_CFLAGS) -o $@ $^ |
---|
134 | |
---|
135 | $(FEDIR)/GenericIOVerify: $(FEDIR)/GenericIOVerify.o $(FEDIR)/GenericIO.o $(FE_BLOSC_O) |
---|
136 | $(CXX) $(FE_CFLAGS) -o $@ $^ |
---|
137 | |
---|
138 | FE_UNAME := $(shell uname -s) |
---|
139 | ifeq ($(FE_UNAME),Darwin) |
---|
140 | FE_SHARED := -bundle |
---|
141 | else |
---|
142 | FE_SHARED := -shared |
---|
143 | endif |
---|
144 | $(FEDIR)/GenericIOSQLite.so: $(FEDIR)/GenericIOSQLite.o $(FEDIR)/GenericIO.o |
---|
145 | $(CXX) $(FE_CFLAGS) $(FE_SHARED) -o $@ $^ |
---|
146 | |
---|
147 | SQLITE_CPPFLAGS := -DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_DISABLE_DIRSYNC=1 -DSQLITE_ENABLE_FTS3=3 -DSQLITE_ENABLE_RTREE=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY=1 -DSQLITE_ENABLE_LOAD_EXTENSION=1 -DHAVE_READLINE=1 |
---|
148 | |
---|
149 | $(FEDIR)/sqbuild: |
---|
150 | mkdir -p $(FEDIR)/sqbuild |
---|
151 | |
---|
152 | $(FEDIR)/sqbuild/%.o: thirdparty/sqlite/%.c | $(FEDIR)/sqbuild |
---|
153 | $(CC) $(FE_CFLAGS) $(FE_CPPFLAGS) $(SQLITE_CPPFLAGS) -c -o $@ $< |
---|
154 | |
---|
155 | $(FEDIR)/sqlite3: $(FEDIR)/sqbuild/sqlite3.o $(FEDIR)/sqbuild/shell.o |
---|
156 | $(CC) $(FE_CFLAGS) -o $@ $^ -pthread -lreadline -lrt -ldl |
---|
157 | |
---|
158 | $(MPIDIR): |
---|
159 | mkdir -p $(MPIDIR) |
---|
160 | |
---|
161 | $(MPIDIR)/%.o: %.c | $(MPIDIR) |
---|
162 | mkdir -p $(dir $@) |
---|
163 | $(MPICC) $(MPI_CFLAGS) $(MPI_CPPFLAGS) -c -o $@ $< |
---|
164 | |
---|
165 | $(MPIDIR)/%.o: %.cxx | $(MPIDIR) |
---|
166 | mkdir -p $(dir $@) |
---|
167 | $(MPICXX) $(MPI_CFLAGS) $(MPI_CPPFLAGS) -c -o $@ $< |
---|
168 | |
---|
169 | MPI_BLOSC_O := $(addprefix $(MPIDIR)/,$(BLOSC_O)) |
---|
170 | |
---|
171 | $(MPIDIR)/GenericIOPrint: $(MPIDIR)/GenericIOPrint.o $(MPIDIR)/GenericIO.o $(MPI_BLOSC_O) |
---|
172 | $(MPICXX) $(MPI_CFLAGS) -o $@ $^ |
---|
173 | |
---|
174 | $(MPIDIR)/GenericIOVerify: $(MPIDIR)/GenericIOVerify.o $(MPIDIR)/GenericIO.o $(MPI_BLOSC_O) |
---|
175 | $(MPICXX) $(MPI_CFLAGS) -o $@ $^ |
---|
176 | |
---|
177 | $(MPIDIR)/GenericIOBenchmarkRead: $(MPIDIR)/GenericIOBenchmarkRead.o $(MPIDIR)/GenericIO.o $(MPI_BLOSC_O) |
---|
178 | $(MPICXX) $(MPI_CFLAGS) -o $@ $^ |
---|
179 | |
---|
180 | $(MPIDIR)/GenericIOBenchmarkWrite: $(MPIDIR)/GenericIOBenchmarkWrite.o $(MPIDIR)/GenericIO.o $(MPI_BLOSC_O) |
---|
181 | $(MPICXX) $(MPI_CFLAGS) -o $@ $^ |
---|
182 | |
---|
183 | frontend-progs: $(FEDIR)/GenericIOPrint $(FEDIR)/GenericIOVerify |
---|
184 | fe-progs: frontend-progs |
---|
185 | |
---|
186 | mpi-progs: $(MPIDIR)/GenericIOPrint $(MPIDIR)/GenericIOVerify $(MPIDIR)/GenericIOBenchmarkRead $(MPIDIR)/GenericIOBenchmarkWrite |
---|
187 | |
---|
188 | frontend-sqlite: $(FEDIR)/GenericIOSQLite.so $(FEDIR)/sqlite3 |
---|
189 | fe-sqlite: frontend-sqlite |
---|
190 | |
---|
191 | clean: |
---|
192 | rm -rf frontend mpi |
---|
193 | |
---|