LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1155|回复: 3

请教一个automake的问题

[复制链接]
发表于 2007-10-19 20:07:03 | 显示全部楼层 |阅读模式
autoconf version: 2.57
automake version: 1.6.3

执行./configure之后,一切正常

但是执行make之后,报错

make[1]: Entering directory `/jz'
Making all in gen
make[2]: Entering directory `/jz/gen'
make[2]: *** No rule to make target `zizutil.c', needed by
`zizutil.o'.  Stop.
make[2]: Leaving directory `/jz/gen'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/jz'

zizutil.c明明是我在jz/gen下面的源文件

为什么会被当成目标文件呢?

Makefile.am in jz
------------------------------
AUTOMAKE_OPTIONS = gnu
SUBDIRS = gen ora util

Makefile.am in jz/gen
--------------------------------
noinst_LIBRARIES = libzizzy.a
libzizzy_a_SOURCES = zizutil.c zizzy.c

configuare.ac in jz
-------------------------------
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.


AC_PREREQ(2.57)
#AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
AC_INIT(zizzy, 0.1, f...@bug.com)
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([config.h.in])
AM_CONFIG_HEADER([config.h])


# Checks for programs.
AC_PROG_CC


# Checks for libraries.
# FIXME: Replace `main' with a function in `-lm':
AC_CHECK_LIB([m], [main])


# Checks for header files.
AC_FUNC_ALLOCA
AC_HEADER_DIRENT
AC_HEADER_STDC
AC_CHECK_HEADERS([stdlib.h string.h sys/time.h unistd.h])


# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
AC_TYPE_OFF_T
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_HEADER_TIME
AC_STRUCT_TM
AC_C_VOLATILE


# Checks for library functions.
AC_FUNC_CLOSEDIR_VOID
AC_FUNC_MALLOC
AC_FUNC_STAT
AC_FUNC_VPRINTF
AC_CHECK_FUNCS([memset sqrt strchr strerror])
#AC_CONFIG_SUBDIRS([gen ora util])
AC_PROG_RANLIB


AC_CONFIG_FILES([Makefile
                 gen/Makefile
                 ora/Makefile
                 util/Makefile])
AC_OUTPUT
发表于 2007-10-20 07:49:20 | 显示全部楼层
这说明 gen 里的 Makefile 可能有问题。能不能检查一下?你是如何生成这个 Makefile 的?
回复 支持 反对

使用道具 举报

 楼主| 发表于 2007-10-21 15:38:38 | 显示全部楼层
Post by herberteuler
这说明 gen 里的 Makefile 可能有问题。能不能检查一下?你是如何生成这个 Makefile 的?

用automake生成的啊
回复 支持 反对

使用道具 举报

发表于 2007-10-21 20:49:25 | 显示全部楼层
Post by loudking
用automake生成的啊


Automake 生成的文件就是普通的 GNU make 的 Makefile,不难检查的。请查看一下该文件中对应于有问题的那个规则是怎样写的,才能进一步确定问题。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表