We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2544ecd commit 11eacbfCopy full SHA for 11eacbf
Makefile
@@ -1,9 +1,15 @@
1
#
2
-# Copyright (c) 2009-2015 Intel Corporation
+# Copyright (c) 2009-2018 Intel Corporation
3
# written by Roman Dementiev and Jim Harris
4
5
6
-EXE = pcm.x pcm-numa.x pcm-power.x pcm-sensor.x pcm-msr.x pcm-memory.x pcm-tsx.x pcm-pcie.x pcm-core.x pcm-iio.x pcm-lspci.x pcm-pcicfg.x daemon-binaries
+EXE = pcm.x pcm-numa.x pcm-power.x pcm-sensor.x pcm-msr.x pcm-memory.x pcm-tsx.x pcm-pcie.x pcm-core.x pcm-iio.x pcm-lspci.x pcm-pcicfg.x
7
+
8
+UNAME:=$(shell uname)
9
10
+ifeq ($(UNAME), Linux)
11
+EXE += daemon-binaries
12
+endif
13
14
all: $(EXE)
15
@@ -22,8 +28,6 @@ ifneq ($(wildcard /usr/include/linux/perf_event.h),)
22
28
CXXFLAGS += -DPCM_USE_PERF
23
29
endif
24
30
25
-UNAME:=$(shell uname)
26
-
27
31
ifeq ($(UNAME), Linux)
32
LIB= -pthread -lrt
33
CXXFLAGS += -std=c++11
0 commit comments