From 2b60d55c919e7588f5aff15936e83c300b3660bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Tue, 22 Mar 2005 20:58:25 +0000 Subject: zexy-2.0: - use of abstractions for objects that allow it - some objects are build both as externals and abstractions (as slower fallbacks) - code-layout is now 1:1 c-file<->object (this should allow for building of zexy as a collection of externals instead as a big library) - matrix-objects have moved to iemmatrix !! svn path=/trunk/externals/zexy/; revision=2641 --- src/configure.in | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/configure.in') diff --git a/src/configure.in b/src/configure.in index a2cbd49..1216d3f 100644 --- a/src/configure.in +++ b/src/configure.in @@ -214,13 +214,14 @@ else echo "no (ignored)" fi -echo "SOURCES = \\"> make.source -for i in `ls z_*.c zexy.c` +echo "SOURCES = \\"> Make.source +for i in `ls *.c` do - echo " $i\\">> make.source + echo " $i\\">> Make.source done -echo >> make.source +echo >> Make.source -AC_OUTPUT(makefile) +AC_OUTPUT(Makefile) -rm -f conftest.* \ No newline at end of file +rm -f conftest.* +./makesource.sh -- cgit v1.2.1