在solaris上构建zeromq java绑定

在solaris上构建zeromq java绑定,java,makefile,zeromq,Java,Makefile,Zeromq,我正在尝试在solaris上构建zeromq java绑定 我已成功安装了最新版本的0MQ,但当我尝试使用make构建java绑定时,出现以下错误: 有什么想法吗 *** Error code 1 The following command caused the error: failcom='exit 1'; \ for f in x $MAKEFLAGS; do \ case $f in \ *=* | --[!k]*);; \ *k*) failcom='fail=ye

我正在尝试在solaris上构建zeromq java绑定

我已成功安装了最新版本的0MQ,但当我尝试使用make构建java绑定时,出现以下错误:

有什么想法吗

*** Error code 1
The following command caused the error:
failcom='exit 1'; \
for f in x $MAKEFLAGS; do \
  case $f in \
    *=* | --[!k]*);; \
    *k*) failcom='fail=yes';; \
  esac; \
done; \
dot_seen=no; \
target=`echo all-recursive | sed s/-recursive//`; \
list='src perf'; for subdir in $list; do \
  echo "Making $target in $subdir"; \
  if test "$subdir" = "."; then \
    dot_seen=yes; \
    local_target="$target-am"; \
   else \
     local_target="$target"; \
  fi; \
 (cd $subdir && make  $local_target) \
 || eval $failcom; \
 done; \
 if test "$dot_seen" = "no"; then \
   make  "$target-am" || exit 1; \
 fi; test -z "$fail"
 make: Fatal error: Command failed for target `all-recursive'