2
0
mirror of https://github.com/boostorg/redis.git synced 2026-02-13 12:42:15 +00:00
Files
redis/Makefile
Marcelo Zimbres 359f0f490f Commit of the following
- Progresses with aedis.
- Improvements in the documentation.
2019-11-21 21:59:00 +01:00

18 lines
534 B
Makefile

# Copyright (c) 2019 Marcelo Zimbres Silva (mzimbres at gmail dot com)
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
CPPFLAGS += -std=c++17 -g
CPPFLAGS += -I/opt/boost_1_71_0/include
CPPFLAGS += -DBOOST_ASIO_CONCURRENCY_HINT_1=BOOST_ASIO_CONCURRENCY_HINT_UNSAFE
examples: % : %.o
$(CXX) -o $@ $^ $(CPPFLAGS) -lfmt -lpthread
.PHONY: clean
clean:
rm -f examples examples.o