summaryrefslogtreecommitdiff
path: root/jtools/qemu/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-01-23 10:47:31 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-01-23 10:47:31 +0100
commit4b7a7c1333333ce0f1567cfda15fb86222be2301 (patch)
tree52ca6663c6c95635d7afa18c3cf750280b498c62 /jtools/qemu/Makefile
parente31358b57662bb44613874e6cb5d5569309910af (diff)
parent103810049b157dc809c82a0136e23fe4276b9750 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Conflicts: package/pulseaudio/Makefile
Diffstat (limited to 'jtools/qemu/Makefile')
-rw-r--r--jtools/qemu/Makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/jtools/qemu/Makefile b/jtools/qemu/Makefile
deleted file mode 100644
index b6add732e..000000000
--- a/jtools/qemu/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-# This file is part of the OpenADK project. OpenADK is copyrighted
-# material, please see the LICENCE file in the top-level directory.
-
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:= qemu
-PKG_VERSION:= 0.14.1
-PKG_RELEASE:= 1
-PKG_MD5SUM:= b6c713a8db638e173af53a62d5178640
-PKG_SITES:= http://download.savannah.gnu.org/releases/qemu/
-
-include ../rules.mk
-
-install: ${STAGING_JAVA_HOST_DIR}/usr/bin/qemu-arm
-
-$(WRKBUILD)/.configured: ${WRKDIST}/.prepared
- (cd $(WRKBUILD); ./configure --prefix=/usr \
- --host-cc=$(CC_FOR_BUILD) \
- --disable-system \
- --disable-sdl \
- --target-list=arm-linux-user,i386-linux-user,mipsel-linux-user,x86_64-linux-user \
- )
- touch $@
-
-$(WRKBUILD)/.compiled: ${WRKDIST}/.configured
- ${MAKE} -C ${WRKBUILD} $(MAKE_TRACE)
- touch $@
-
-${STAGING_JAVA_HOST_DIR}/usr/bin/qemu-arm: $(WRKBUILD)/.compiled
- ${MAKE} -C ${WRKBUILD} DESTDIR=$(STAGING_JAVA_HOST_DIR) install $(MAKE_TRACE)
-
-include $(TOPDIR)/mk/tools.mk