forked from pmem/pmdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
115 lines (102 loc) · 3.78 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#
# Copyright (c) 2014, Intel Corporation
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
#
# * Neither the name of Intel Corporation nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Makefile -- top-level Makefile for NVM Library
#
# Use "make" to build the library.
#
# Use "make test" to build unit tests.
#
# Use "make check" to run unit tests.
#
# Use "make clean" to delete all intermediate files (*.o, etc).
#
# Use "make clobber" to delete everything re-buildable (binaries, etc.).
#
# Use "make cstyle" to run cstyle on all C source files
#
# Use "make rpm" to build rpm packages
#
# Use "make dpkg" to build dpkg packages
#
# Use "make source DESTDIR=path_to_dir" to copy source files
# from HEAD to 'path_to_dir/nvml' directory.
#
# As root, use "make install" to install the library in the usual
# locations (/usr/lib, /usr/include, and /usr/share/man).
# You can provide custom directory prefix for installation using
# DESTDIR variable e.g.: "make install DESTDIR=/opt"
export SRCVERSION = $(shell git describe 2>/dev/null || cat .version)
RPM_BUILDDIR=rpmbuild
DPKG_BUILDDIR=dpkgbuild
rpm : override DESTDIR=$(CURDIR)/$(RPM_BUILDDIR)
dpkg: override DESTDIR=$(CURDIR)/$(DPKG_BUILDDIR)
all:
$(MAKE) -C src $@
$(MAKE) -C examples $@
$(MAKE) -C doc $@
clean:
$(MAKE) -C src $@
$(MAKE) -C examples $@
$(MAKE) -C doc $@
$(RM) -r $(RPM_BUILDDIR) $(DPKG_BUILDDIR)
clobber:
$(MAKE) -C src $@
$(MAKE) -C examples $@
$(MAKE) -C doc $@
$(RM) -r $(RPM_BUILDDIR) $(DPKG_BUILDDIR) rpm dpkg
test check:
$(MAKE) -C src $@
cstyle:
$(MAKE) -C src $@
$(MAKE) -C examples $@
$(MAKE) -C benchmarks $@
@echo Checking files for trailing spaces...
@! find . -path ./src/jemalloc -prune -o -type f\
\( -name 'README' -o -name 'Makefile*' -o -name 'TEST*' \)\
-exec grep -n -H -P '\s$$' {} +\
|| (echo Error: trailing whitespaces found && exit 1)
@echo Done
source:
$(if $(shell git rev-parse 2>&1), $(error Not a git repository))
$(if $(shell git status --porcelain), $(error Working directory is dirty))
$(if $(DESTDIR), , $(error Please provide DESTDIR variable))
mkdir -p $(DESTDIR)/nvml
echo -n $(SRCVERSION) > $(DESTDIR)/nvml/.version
git archive HEAD | tar -x -C $(DESTDIR)/nvml
pkg-clean:
$(RM) -r $(DESTDIR)
rpm dpkg: pkg-clean source
utils/[email protected] $(SRCVERSION) $(DESTDIR)/nvml $(DESTDIR) $(CURDIR)/$@
install:
$(MAKE) -C src $@
$(MAKE) -C doc $@
.PHONY: all clean clobber test check cstyle install source rpm dpkg pkg-clean $(SUBDIRS)