[da65757] | 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 | |
---|
[00587dc] | 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 | |
---|
[8ebc79b] | 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 | |
---|
[bd84570] | 62 | BASE_CPPFLAGS := $(BLOSC_CPPFLAGS) -I. -D__STDC_CONSTANT_MACROS |
---|
[8ebc79b] | 63 | |
---|
[00587dc] | 64 | FEDIR = frontend |
---|
| 65 | FE_CFLAGS := -g -fPIC -O3 -fopenmp |
---|
[8ebc79b] | 66 | FE_CPPFLAGS := $(BASE_CPPFLAGS) -Ithirdparty/sqlite -DGENERICIO_NO_MPI |
---|
[00587dc] | 67 | |
---|
| 68 | MPIDIR = mpi |
---|
[754e14c] | 69 | MPI_CFLAGS := -g -O3 -fopenmp |
---|
[8ebc79b] | 70 | MPI_CPPFLAGS := $(BASE_CPPFLAGS) |
---|
[00587dc] | 71 | |
---|
| 72 | $(FEDIR): |
---|
| 73 | mkdir -p $(FEDIR) |
---|
| 74 | |
---|
[8ebc79b] | 75 | $(FEDIR)/%.o: %.c | $(FEDIR) |
---|
| 76 | mkdir -p $(dir $@) |
---|
[00587dc] | 77 | $(CC) $(FE_CFLAGS) $(FE_CPPFLAGS) -c -o $@ $< |
---|
| 78 | |
---|
| 79 | $(FEDIR)/%.o: %.cxx | $(FEDIR) |
---|
[8ebc79b] | 80 | mkdir -p $(dir $@) |
---|
[00587dc] | 81 | $(CXX) $(FE_CFLAGS) $(FE_CPPFLAGS) -c -o $@ $< |
---|
| 82 | |
---|
[8ebc79b] | 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)) |
---|
[981e22c] | 131 | |
---|
| 132 | $(FEDIR)/GenericIOPrint: $(FEDIR)/GenericIOPrint.o $(FEDIR)/GenericIO.o $(FE_BLOSC_O) |
---|
[00587dc] | 133 | $(CXX) $(FE_CFLAGS) -o $@ $^ |
---|
| 134 | |
---|
[981e22c] | 135 | $(FEDIR)/GenericIOVerify: $(FEDIR)/GenericIOVerify.o $(FEDIR)/GenericIO.o $(FE_BLOSC_O) |
---|
[00587dc] | 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 |
---|
[bd84570] | 144 | |
---|
| 145 | $(FEDIR)/libpygio.so: $(FEDIR)/GenericIO.o $(FEDIR)/python/lib/gio.o $(FE_BLOSC_O) |
---|
| 146 | $(CXX) $(FE_CFLAGS) $(FE_SHARED) -o $@ $^ |
---|
| 147 | |
---|
| 148 | $(FEDIR)/GenericIOSQLite.so: $(FEDIR)/GenericIOSQLite.o $(FEDIR)/GenericIO.o $(FE_BLOSC_O) |
---|
[00587dc] | 149 | $(CXX) $(FE_CFLAGS) $(FE_SHARED) -o $@ $^ |
---|
| 150 | |
---|
| 151 | 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 |
---|
| 152 | |
---|
| 153 | $(FEDIR)/sqbuild: |
---|
| 154 | mkdir -p $(FEDIR)/sqbuild |
---|
| 155 | |
---|
| 156 | $(FEDIR)/sqbuild/%.o: thirdparty/sqlite/%.c | $(FEDIR)/sqbuild |
---|
| 157 | $(CC) $(FE_CFLAGS) $(FE_CPPFLAGS) $(SQLITE_CPPFLAGS) -c -o $@ $< |
---|
| 158 | |
---|
| 159 | $(FEDIR)/sqlite3: $(FEDIR)/sqbuild/sqlite3.o $(FEDIR)/sqbuild/shell.o |
---|
| 160 | $(CC) $(FE_CFLAGS) -o $@ $^ -pthread -lreadline -lrt -ldl |
---|
| 161 | |
---|
| 162 | $(MPIDIR): |
---|
| 163 | mkdir -p $(MPIDIR) |
---|
| 164 | |
---|
[8ebc79b] | 165 | $(MPIDIR)/%.o: %.c | $(MPIDIR) |
---|
| 166 | mkdir -p $(dir $@) |
---|
[00587dc] | 167 | $(MPICC) $(MPI_CFLAGS) $(MPI_CPPFLAGS) -c -o $@ $< |
---|
| 168 | |
---|
| 169 | $(MPIDIR)/%.o: %.cxx | $(MPIDIR) |
---|
[8ebc79b] | 170 | mkdir -p $(dir $@) |
---|
[00587dc] | 171 | $(MPICXX) $(MPI_CFLAGS) $(MPI_CPPFLAGS) -c -o $@ $< |
---|
| 172 | |
---|
[8ebc79b] | 173 | MPI_BLOSC_O := $(addprefix $(MPIDIR)/,$(BLOSC_O)) |
---|
[981e22c] | 174 | |
---|
| 175 | $(MPIDIR)/GenericIOPrint: $(MPIDIR)/GenericIOPrint.o $(MPIDIR)/GenericIO.o $(MPI_BLOSC_O) |
---|
[00587dc] | 176 | $(MPICXX) $(MPI_CFLAGS) -o $@ $^ |
---|
| 177 | |
---|
[981e22c] | 178 | $(MPIDIR)/GenericIOVerify: $(MPIDIR)/GenericIOVerify.o $(MPIDIR)/GenericIO.o $(MPI_BLOSC_O) |
---|
[00587dc] | 179 | $(MPICXX) $(MPI_CFLAGS) -o $@ $^ |
---|
| 180 | |
---|
[981e22c] | 181 | $(MPIDIR)/GenericIOBenchmarkRead: $(MPIDIR)/GenericIOBenchmarkRead.o $(MPIDIR)/GenericIO.o $(MPI_BLOSC_O) |
---|
[406b50a] | 182 | $(MPICXX) $(MPI_CFLAGS) -o $@ $^ |
---|
| 183 | |
---|
[981e22c] | 184 | $(MPIDIR)/GenericIOBenchmarkWrite: $(MPIDIR)/GenericIOBenchmarkWrite.o $(MPIDIR)/GenericIO.o $(MPI_BLOSC_O) |
---|
[406b50a] | 185 | $(MPICXX) $(MPI_CFLAGS) -o $@ $^ |
---|
| 186 | |
---|
[fc4fc2f] | 187 | $(MPIDIR)/GenericIORewrite: $(MPIDIR)/GenericIORewrite.o $(MPIDIR)/GenericIO.o $(MPI_BLOSC_O) |
---|
| 188 | $(MPICXX) $(MPI_CFLAGS) -o $@ $^ |
---|
| 189 | |
---|
[ef727a6] | 190 | frontend-progs: $(FEDIR)/GenericIOPrint $(FEDIR)/GenericIOVerify $(FEDIR)/libpygio.so |
---|
[00587dc] | 191 | fe-progs: frontend-progs |
---|
| 192 | |
---|
[fc4fc2f] | 193 | mpi-progs: $(MPIDIR)/GenericIOPrint $(MPIDIR)/GenericIOVerify $(MPIDIR)/GenericIOBenchmarkRead $(MPIDIR)/GenericIOBenchmarkWrite $(MPIDIR)/GenericIORewrite |
---|
[00587dc] | 194 | |
---|
| 195 | frontend-sqlite: $(FEDIR)/GenericIOSQLite.so $(FEDIR)/sqlite3 |
---|
| 196 | fe-sqlite: frontend-sqlite |
---|
| 197 | |
---|
| 198 | clean: |
---|
| 199 | rm -rf frontend mpi |
---|
| 200 | |
---|