X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=lang%2Fjamvm%2FMakefile;h=7acd9fc72e2fddd58786744d5dcde463f9cd16a7;hp=4637625d819802cc773f60ed7384c6f4be5dc2dd;hb=7e3276d2eff67ba44333f89b1f42e7f87883b43a;hpb=77c005f1f9fc01ce15b26aa22703fe2a2204aba7 diff --git a/lang/jamvm/Makefile b/lang/jamvm/Makefile index 4637625d81..7acd9fc72e 100644 --- a/lang/jamvm/Makefile +++ b/lang/jamvm/Makefile @@ -24,7 +24,7 @@ include $(INCLUDE_DIR)/package.mk define Package/jamvm SECTION:=lang CATEGORY:=Languages - DEPENDS:=+libffi-sable + DEPENDS:=+libffi-sable @!mips TITLE:=A compact Java Virtual Machine DESCRIPTION:=\ JamVM is a new Java Virtual Machine which conforms to the JVM \\\ @@ -45,15 +45,16 @@ define Build/Configure endef define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR)/src \ - $(TARGET_CONFIGURE_OPTS) + $(MAKE) -C $(PKG_BUILD_DIR) all endef -define Package/jamvm/install +ifneq ($(ARCH),mips) + define Package/jamvm/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/jamvm $(1)/usr/bin/ $(INSTALL_DIR) $(1)/usr/share/jamvm $(INSTALL_DATA) $(PKG_BUILD_DIR)/lib/classes.zip $(1)/usr/share/jamvm/ -endef + endef +endif $(eval $(call BuildPackage,jamvm))