ab0d817010ce1872d1eb330eddcef593038f3c5f
[barometer.git] / src / pmu-tools / Makefile
1 # makefile to manage collectd package
2 #
3
4 # Copyright 2017 OPNFV
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17
18 #
19 # Contributors:
20 #   Aihua Li, Huawei Technologies.
21 #   Maryam Tahhan, Intel Corporation.
22
23 include ../mk/master.mk
24 include ../package-list.mk
25 export XDG_CACHE_HOME=/usr/local/src
26 WORK_DIR = pmu-tools
27 TAG_DONE_FLAG = $(WORK_DIR)/.$(PMUTOOLS_TAG).done
28 BUILD_CMD =
29 MAKEFILE = Makefile
30
31 .PHONY: install force_install force_make
32
33 # install depends on make
34 force_install: force_make
35
36 all: force_make
37         @echo "Finished making $(WORK_DIR) "
38
39 INSTALL_TARGET = force_install force_make
40
41 force_make: $(WORK_DIR) $(TAG_DONE_FLAG)
42         $(AT)cd $(WORK_DIR) && git pull $(PMUTOOLS_URL) $(PMUTOOLS_TAG)
43         @echo "git pull done"
44         $(AT)cd $(WORK_DIR)/jevents
45         $(AT)sed -i 's/lib64/lib/' $(WORK_DIR)/jevents/$(MAKEFILE)
46         $(AT)sed -i 's/CFLAGS := -g -Wall -O2 -Wno-unused-result/CFLAGS := -g -Wall -O2 -Wno-unused-result -fPIC/' $(WORK_DIR)/jevents/$(MAKEFILE)
47         $(AT)$(MAKE) -C $(WORK_DIR)/jevents
48         @echo "Make done"
49
50 force_install:
51         $(AT)sudo $(MAKE) -C $(WORK_DIR)/jevents install
52         $(AT)./$(WORK_DIR)/event_download.py --all
53
54 install: $(INSTALL_TARGET)
55
56 # hard way to clean and clobber
57 clean:
58         $(AT)cd $(WORK_DIR) && git clean -xfd *.o
59
60 clobber:
61         $(AT)rm -rf $(WORK_DIR)
62
63 # distclean is for developer who would like to keep the
64 # clone git repo, saving time to fetch again from url
65 distclean:
66         $(AT)cd $(WORK_DIR) && git clean -xfd && git checkout -f
67
68 test:
69         @echo "Make test in $(WORK_DIR) (stub) "
70
71 sanity:
72         @echo "Make sanity in $(WORK_DIR) (stub) "
73
74 $(WORK_DIR):
75         $(AT)git clone $(PMUTOOLS_URL)
76
77 $(TAG_DONE_FLAG): $(WORK_DIR)
78         $(AT)cd $(WORK_DIR); git checkout $(PMUTOOLS_TAG)
79 ifneq ($(PATCH_FILE),)
80         $(AT)cd $(WORK_DIR); patch -p1 < ../$(PATCH_FILE)
81 endif
82         $(AT)touch $@