Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame^] | 1 | From ac24c78f5aa62ba43bb87b74301b659bcc506f11 Mon Sep 17 00:00:00 2001 |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 2 | From: Alistair Francis <alistair.francis@wdc.com> |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame^] | 3 | Date: Thu, 18 Jul 2019 15:40:22 +0800 |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 4 | Subject: [PATCH] Makefile: Don't build the examples |
| 5 | |
| 6 | Signed-off-by: Alistair Francis <alistair.francis@wdc.com> |
| 7 | Upstream-Status: Inappropriate [disable feature] |
| 8 | --- |
| 9 | src/Makefile | 4 ++-- |
| 10 | 1 file changed, 2 insertions(+), 2 deletions(-) |
| 11 | |
| 12 | diff --git a/src/Makefile b/src/Makefile |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame^] | 13 | index 773ab1387..58912f0ab 100644 |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 14 | --- a/src/Makefile |
| 15 | +++ b/src/Makefile |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame^] | 16 | @@ -37,13 +37,13 @@ include $(TOP)/src/common.inc |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 17 | |
| 18 | TARGETS = libpmem libvmem libpmemblk libpmemlog libpmemobj libpmempool\ |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame^] | 19 | libvmmalloc tools |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 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\ |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame^] | 26 | libpmempool libvmmalloc librpmem |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 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 | -- |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame^] | 33 | 2.14.4 |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 34 | |