| 123456789101112131415161718192021222324252627 | # 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.mkPKG_NAME:=		jamvmPKG_VERSION:=		1.5.4PKG_RELEASE:=		1PKG_MD5SUM:=		63220327925ace13756ae334c55a3baaPKG_SITES:=		${MASTER_SITE_SOURCEFORGE:=jamvm/}include ../rules.mkinstall: ${STAGING_JAVA_HOST_DIR}/usr/bin/jamvm$(WRKBUILD)/.configured: ${WRKDIST}/.prepared	(cd $(WRKBUILD); ./configure --prefix=/usr --with-classpath-install-dir=$(STAGING_JAVA_HOST_DIR) );	touch $@$(WRKBUILD)/.compiled: ${WRKDIST}/.configured	${MAKE} -C ${WRKBUILD} $(MAKE_TRACE)	touch $@${STAGING_JAVA_HOST_DIR}/usr/bin/jamvm: $(WRKBUILD)/.compiled	${MAKE} -C ${WRKBUILD} DESTDIR=$(STAGING_JAVA_HOST_DIR) install $(MAKE_TRACE)include $(TOPDIR)/mk/tools.mk
 |