blob: dbe9c45e11cf809096c309dc8c34588e082ea442 [file] [log] [blame]
Brad Bishop26bdd442019-08-16 17:08:17 -04001From ac24c78f5aa62ba43bb87b74301b659bcc506f11 Mon Sep 17 00:00:00 2001
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08002From: Alistair Francis <alistair.francis@wdc.com>
Brad Bishop26bdd442019-08-16 17:08:17 -04003Date: Thu, 18 Jul 2019 15:40:22 +0800
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08004Subject: [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
Brad Bishop26bdd442019-08-16 17:08:17 -040013index 773ab1387..58912f0ab 100644
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080014--- a/src/Makefile
15+++ b/src/Makefile
Brad Bishop26bdd442019-08-16 17:08:17 -040016@@ -37,13 +37,13 @@ include $(TOP)/src/common.inc
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080017
18 TARGETS = libpmem libvmem libpmemblk libpmemlog libpmemobj libpmempool\
Brad Bishop26bdd442019-08-16 17:08:17 -040019 libvmmalloc tools
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080020-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\
Brad Bishop26bdd442019-08-16 17:08:17 -040026 libpmempool libvmmalloc librpmem
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080027-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--
Brad Bishop26bdd442019-08-16 17:08:17 -0400332.14.4
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080034