fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.3 KiB
38 lines
1.3 KiB
# Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
|
# This source code is licensed under both the GPLv2 (found in the
|
|
# COPYING file in the root directory) and Apache 2.0 License
|
|
# (found in the LICENSE.Apache file in the root directory).
|
|
|
|
CWD = $(shell pwd)
|
|
|
|
PROTOBUF_CFLAGS = `pkg-config --cflags protobuf`
|
|
PROTOBUF_LDFLAGS = `pkg-config --libs protobuf`
|
|
|
|
PROTOBUF_MUTATOR_CFLAGS = `pkg-config --cflags libprotobuf-mutator`
|
|
PROTOBUF_MUTATOR_LDFLAGS = `pkg-config --libs libprotobuf-mutator`
|
|
|
|
ROCKSDB_INCLUDE_DIR = $(CWD)/../include
|
|
ROCKSDB_LIB_DIR = $(CWD)/..
|
|
|
|
PROTO_IN = $(CWD)/proto
|
|
PROTO_OUT = $(CWD)/proto/gen
|
|
|
|
CC = clang++
|
|
CCFLAGS += -std=c++14 -Wall -fsanitize=address,fuzzer
|
|
CFLAGS += $(PROTOBUF_CFLAGS) $(PROTOBUF_MUTATOR_CFLAGS) -I$(PROTO_OUT) -I$(ROCKSDB_INCLUDE_DIR)
|
|
LDFLAGS += $(PROTOBUF_LDFLAGS) $(PROTOBUF_MUTATOR_LDFLAGS) -L$(ROCKSDB_LIB_DIR) -lrocksdb -lz -lbz2
|
|
|
|
.PHONY: librocksdb gen_proto
|
|
|
|
librocksdb:
|
|
cd $(CWD)/.. && make static_lib
|
|
|
|
gen_proto:
|
|
mkdir -p $(PROTO_OUT)
|
|
protoc \
|
|
--proto_path=$(PROTO_IN) \
|
|
--cpp_out=$(PROTO_OUT) \
|
|
$(PROTO_IN)/*.proto
|
|
|
|
sst_file_writer_fuzzer: librocksdb gen_proto sst_file_writer_fuzzer.cc proto/gen/db_operation.pb.cc
|
|
$(CC) $(CCFLAGS) $(CFLAGS) $(LDFLAGS) -o sst_file_writer_fuzzer sst_file_writer_fuzzer.cc proto/gen/db_operation.pb.cc
|
|
|