Merge "bidirectional value: Fix inconsistency for bidir param"
[vswitchperf.git] / src / qemu / Makefile
1 # makefile to manage qemu package
2 #
3
4 # Copyright (c) 2015-2016 OPNFV and Intel Corporation.
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
22 include ../mk/master.mk
23 include ../package-list.mk
24
25 WORK_DIR = qemu
26 TAG_DONE_FLAG = $(WORK_DIR)/.$(QEMU_TAG).done
27 INSTALL_TARGET = force_make force_install
28 CONFIG_CMD =
29 CONFIG_CMD += ./configure
30 CONFIG_CMD += --target-list="x86_64-softmmu"
31
32 all: force_make
33
34 .PHONY: install force_install config force_make
35
36 config $(WORK_DIR)/Makefile: $(WORK_DIR)/configure
37         $(AT)cd $(WORK_DIR); $(CONFIG_CMD)
38         @echo "Configure done"
39
40 force_make: $(WORK_DIR)/Makefile
41         $(AT)cd $(WORK_DIR) && git pull $(QEMU_URL) $(QEMU_TAG)
42         $(AT)echo "git pull done"
43         $(AT)$(MAKE) -C $(WORK_DIR) $(MORE_MAKE_FLAGS)
44         @echo "Make done"
45
46 force_install:
47         $(AT)sudo $(MAKE) -C $(WORK_DIR) install
48
49 install: $(INSTALL_TARGET)
50
51 # hard way to clean and clobber
52 clean:
53         $(AT)cd $(WORK_DIR) && git clean -xfd *.o
54 clobber:
55         $(AT)rm -rf $(WORK_DIR)
56
57 # distclean is for developer who would like to keep the
58 # clone git repo, saving time to fetch again from url
59 distclean:
60         $(AT)cd $(WORK_DIR) && git clean -xfd && git checkout -f
61
62 test:
63         @echo "Make test in $(WORK_DIR) (stub) "
64
65 sanity:
66         @echo "Make sanity in $(WORK_DIR) (stub) "
67
68 $(WORK_DIR)/configure: $(TAG_DONE_FLAG)
69
70 $(WORK_DIR):
71         $(AT)git clone $(QEMU_URL)
72
73 $(TAG_DONE_FLAG): $(WORK_DIR)
74         $(AT)cd $(WORK_DIR); git checkout $(QEMU_TAG)
75 ifneq ($(PATCH_FILE),)
76         $(AT)cd $(WORK_DIR); patch -p1 < ../$(PATCH_FILE)
77 endif
78         $(AT)touch $@