diff options
Diffstat (limited to 'src/qemu/Makefile')
-rwxr-xr-x | src/qemu/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/qemu/Makefile b/src/qemu/Makefile index 1268f571..4603b273 100755 --- a/src/qemu/Makefile +++ b/src/qemu/Makefile @@ -1,7 +1,7 @@ # makefile to manage qemu package # -# Copyright (c) 2015 OPNFV and Intel Corporation. +# Copyright (c) 2015-2016 OPNFV and Intel Corporation. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -24,6 +24,7 @@ include ../package-list.mk WORK_DIR = qemu TAG_DONE_FLAG = $(WORK_DIR)/.$(QEMU_TAG).done +INSTALL_TARGET = force_make force_install CONFIG_CMD = CONFIG_CMD += ./configure CONFIG_CMD += --target-list="x86_64-softmmu" @@ -34,16 +35,10 @@ all: force_make .PHONY: install force_install config force_make -# install depends on make -force_install: force_make - @echo "Finished making $(WORK_DIR) " - config $(WORK_DIR)/Makefile: $(WORK_DIR)/configure $(AT)cd $(WORK_DIR); $(CONFIG_CMD) @echo "Configure done" -INSTALL_TARGET = force_install force_make - force_make: $(WORK_DIR)/Makefile $(AT)cd $(WORK_DIR) && git pull $(QEMU_URL) $(QEMU_TAG) $(AT)echo "git pull done" |