Update of /cvsroot/digraphanalysis/digraphanalysis
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1428
Added Files:
Makefile.in configure.ac
Log Message:
some stuff for automake/autoconf
--- NEW FILE: Makefile.in ---
SUBDIRS = src utils
--- NEW FILE: configure.ac ---
AC_PREREQ(2.59)
AC_INIT([digraphanalysis], [1.0], [jb...@sy...])
AC_CONFIG_SRCDIR([src/alias.c])
AC_PROG_CC
AC_HEADER_STDC
AC_CHECK_HEADERS([stdlib.h string.h unistd.h])
AC_TYPE_SIZE_T
AC_FUNC_MALLOC
AC_FUNC_STAT
AC_CHECK_FUNCS([mkdir])
AC_CONFIG_FILES([Makefile
src/Makefile
utils/Makefile])
AC_OUTPUT
|