blob: f75d94197bd47ea7372a04fa69fc74f72b6d9318 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From a7f07dca2468ea226d2f07fc0105166e75cadaf8 Mon Sep 17 00:00:00 2001
2From: Alistair Francis <alistair.francis@wdc.com>
3Date: Thu, 6 Sep 2018 16:18:50 -0700
4Subject: [PATCH] Makefile: Don't build the examples
5
6Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
7Upstream-Status: Inappropriate [disable feature]
8---
9 src/Makefile | 4 ++--
10 1 file changed, 2 insertions(+), 2 deletions(-)
11
12diff --git a/src/Makefile b/src/Makefile
13index 4b50dd8b5..e00501e31 100644
14--- a/src/Makefile
15+++ b/src/Makefile
16@@ -38,13 +38,13 @@ include $(TOP)/src/version.inc
17
18 TARGETS = libpmem libvmem libpmemblk libpmemlog libpmemobj libpmempool\
19 libpmemcto libvmmalloc tools
20-ALL_TARGETS = $(TARGETS) common librpmem examples benchmarks
21+ALL_TARGETS = $(TARGETS) common librpmem benchmarks
22
23 SCOPE_DIRS = $(TARGETS) common librpmem rpmem_common
24
25 DEBUG_RELEASE_TARGETS = common libpmem libvmem libpmemblk libpmemlog libpmemobj\
26 libpmempool libvmmalloc librpmem libpmemcto
27-RELEASE_TARGETS = tools examples benchmarks
28+RELEASE_TARGETS = tools benchmarks
29
30 CLEAN_NO_JE_TARGETS = $(ALL_TARGETS) rpmem_common test
31 CLEAN_TARGETS = $(CLEAN_NO_JE_TARGETS) jemalloc
32--
332.17.1
34