diff options
author | jofret | 2008-06-26 17:18:30 +0000 |
---|---|---|
committer | jofret | 2008-06-26 17:18:30 +0000 |
commit | 77fcbaff09e20e321342f6552f19a2f89701cd46 (patch) | |
tree | 3a8800127c51a06f21c9b1d5db47b9ce651314c1 | |
parent | 09444cda0c8355cfb49c2a96e807512d0b3124c8 (diff) | |
download | scilab2c-77fcbaff09e20e321342f6552f19a2f89701cd46.tar.gz scilab2c-77fcbaff09e20e321342f6552f19a2f89701cd46.tar.bz2 scilab2c-77fcbaff09e20e321342f6552f19a2f89701cd46.zip |
Enable make dist work
20 files changed, 33 insertions, 30 deletions
diff --git a/src/auxiliaryFunctions/abs/Makefile.am b/src/auxiliaryFunctions/abs/Makefile.am index 8ec99220..507d6bfb 100644 --- a/src/auxiliaryFunctions/abs/Makefile.am +++ b/src/auxiliaryFunctions/abs/Makefile.am @@ -54,10 +54,10 @@ TESTS = testFloatAbs testDoubleAbs # # -*- Abs Tests -*- # -testFloatAbs_SOURCES = testFloatAbs.c +testFloatAbs_SOURCES = testAbs.h testFloatAbs.c testFloatAbs_CFLAGS = $(check_INCLUDES) testFloatAbs_LDADD = $(check_LDADD) -testDoubleAbs_SOURCES = testDoubleAbs.c +testDoubleAbs_SOURCES = testAbs.h testDoubleAbs.c testDoubleAbs_CFLAGS = $(check_INCLUDES) testDoubleAbs_LDADD = $(check_LDADD) diff --git a/src/auxiliaryFunctions/abs/Makefile.in b/src/auxiliaryFunctions/abs/Makefile.in index 74732836..82b03467 100644 --- a/src/auxiliaryFunctions/abs/Makefile.in +++ b/src/auxiliaryFunctions/abs/Makefile.in @@ -246,10 +246,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ # # -*- Abs Tests -*- # -testFloatAbs_SOURCES = testFloatAbs.c +testFloatAbs_SOURCES = testAbs.h testFloatAbs.c testFloatAbs_CFLAGS = $(check_INCLUDES) testFloatAbs_LDADD = $(check_LDADD) -testDoubleAbs_SOURCES = testDoubleAbs.c +testDoubleAbs_SOURCES = testAbs.h testDoubleAbs.c testDoubleAbs_CFLAGS = $(check_INCLUDES) testDoubleAbs_LDADD = $(check_LDADD) all: all-am diff --git a/src/auxiliaryFunctions/find/Makefile.am b/src/auxiliaryFunctions/find/Makefile.am index dc877917..751d8f69 100644 --- a/src/auxiliaryFunctions/find/Makefile.am +++ b/src/auxiliaryFunctions/find/Makefile.am @@ -24,7 +24,8 @@ SRC = sfinda.c \ cfinda.c \ zfinda.c -HEAD = ../includes/find.h +HEAD = ../includes/find.h \ + ../../includes/notFound.h #### # Checking Part @@ -40,7 +41,7 @@ TESTS = testFind # # -*- Find Tests -*- # -testFind_SOURCES = testFind.c +testFind_SOURCES = testFind.h testFind.c testFind_CFLAGS = $(check_INCLUDES) testFind_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/type/libFloatComplex.la \ diff --git a/src/auxiliaryFunctions/find/Makefile.in b/src/auxiliaryFunctions/find/Makefile.in index 0c42bc28..e852a9cf 100644 --- a/src/auxiliaryFunctions/find/Makefile.in +++ b/src/auxiliaryFunctions/find/Makefile.in @@ -203,7 +203,9 @@ SRC = sfinda.c \ cfinda.c \ zfinda.c -HEAD = ../includes/find.h +HEAD = ../includes/find.h \ + ../../includes/notFound.h + #### # Checking Part @@ -215,7 +217,7 @@ check_INCLUDES = -I $(top_builddir)/auxiliaryFunctions/includes \ # # -*- Find Tests -*- # -testFind_SOURCES = testFind.c +testFind_SOURCES = testFind.h testFind.c testFind_CFLAGS = $(check_INCLUDES) testFind_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/type/libFloatComplex.la \ diff --git a/src/auxiliaryFunctions/isempty/Makefile.am b/src/auxiliaryFunctions/isempty/Makefile.am index b34a3450..04e6890b 100644 --- a/src/auxiliaryFunctions/isempty/Makefile.am +++ b/src/auxiliaryFunctions/isempty/Makefile.am @@ -40,7 +40,7 @@ TESTS = testIsEmpty # # -*- Isempty Tests -*- # -testIsEmpty_SOURCES = testIsEmpty.c +testIsEmpty_SOURCES = testIsEmpty.h testIsEmpty.c testIsEmpty_CFLAGS = $(check_INCLUDES) testIsEmpty_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/type/libFloatComplex.la \ diff --git a/src/auxiliaryFunctions/isempty/Makefile.in b/src/auxiliaryFunctions/isempty/Makefile.in index c3f7c039..7a139821 100644 --- a/src/auxiliaryFunctions/isempty/Makefile.in +++ b/src/auxiliaryFunctions/isempty/Makefile.in @@ -220,7 +220,7 @@ check_INCLUDES = -I $(top_builddir)/auxiliaryFunctions/includes \ # # -*- Isempty Tests -*- # -testIsEmpty_SOURCES = testIsEmpty.c +testIsEmpty_SOURCES = testIsEmpty.h testIsEmpty.c testIsEmpty_CFLAGS = $(check_INCLUDES) testIsEmpty_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/type/libFloatComplex.la \ diff --git a/src/auxiliaryFunctions/isnan/Makefile.am b/src/auxiliaryFunctions/isnan/Makefile.am index 1106f2da..ed770b96 100644 --- a/src/auxiliaryFunctions/isnan/Makefile.am +++ b/src/auxiliaryFunctions/isnan/Makefile.am @@ -40,7 +40,7 @@ TESTS = testIsnan # # -*- Isnan Tests -*- # -testIsnan_SOURCES = testIsNan.c +testIsnan_SOURCES = testIsNan.h testIsNan.c testIsnan_CFLAGS = $(check_INCLUDES) testIsnan_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/type/libFloatComplex.la \ diff --git a/src/auxiliaryFunctions/isnan/Makefile.in b/src/auxiliaryFunctions/isnan/Makefile.in index 9aae6efb..2d4d330c 100644 --- a/src/auxiliaryFunctions/isnan/Makefile.in +++ b/src/auxiliaryFunctions/isnan/Makefile.in @@ -219,7 +219,7 @@ check_INCLUDES = -I $(top_builddir)/auxiliaryFunctions/includes \ # # -*- Isnan Tests -*- # -testIsnan_SOURCES = testIsNan.c +testIsnan_SOURCES = testIsNan.h testIsNan.c testIsnan_CFLAGS = $(check_INCLUDES) testIsnan_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/type/libFloatComplex.la \ diff --git a/src/auxiliaryFunctions/length/Makefile.am b/src/auxiliaryFunctions/length/Makefile.am index 4e774c93..bc6f6472 100644 --- a/src/auxiliaryFunctions/length/Makefile.am +++ b/src/auxiliaryFunctions/length/Makefile.am @@ -35,9 +35,9 @@ TESTS = testLength # # -*- Length Tests -*- # -testLength_SOURCES = testLength.c +testLength_SOURCES = testLength.h testLength.c testLength_CFLAGS = $(check_INCLUDES) testLength_LDADD = $(top_builddir)/type/libDoubleComplex.la \ - $(top_builddir)/type/libFloatComplex.la \ - $(top_builddir)/auxiliaryFunctions/length/libLength.la \ - @LIBMATH@ + $(top_builddir)/type/libFloatComplex.la \ + $(top_builddir)/auxiliaryFunctions/length/libLength.la \ + @LIBMATH@ diff --git a/src/auxiliaryFunctions/length/Makefile.in b/src/auxiliaryFunctions/length/Makefile.in index 6af64a9e..03099b15 100644 --- a/src/auxiliaryFunctions/length/Makefile.in +++ b/src/auxiliaryFunctions/length/Makefile.in @@ -212,12 +212,12 @@ check_INCLUDES = -I $(top_builddir)/auxiliaryFunctions/includes \ # # -*- Length Tests -*- # -testLength_SOURCES = testLength.c +testLength_SOURCES = testLength.h testLength.c testLength_CFLAGS = $(check_INCLUDES) testLength_LDADD = $(top_builddir)/type/libDoubleComplex.la \ - $(top_builddir)/type/libFloatComplex.la \ - $(top_builddir)/auxiliaryFunctions/length/libLength.la \ - @LIBMATH@ + $(top_builddir)/type/libFloatComplex.la \ + $(top_builddir)/auxiliaryFunctions/length/libLength.la \ + @LIBMATH@ all: all-am diff --git a/src/auxiliaryFunctions/pythag/Makefile.am b/src/auxiliaryFunctions/pythag/Makefile.am index 001462f3..4f61a033 100644 --- a/src/auxiliaryFunctions/pythag/Makefile.am +++ b/src/auxiliaryFunctions/pythag/Makefile.am @@ -42,7 +42,7 @@ TESTS = testPythag # # -*- Pythag Tests -*- # -testPythag_SOURCES = testPythag.c +testPythag_SOURCES = testPythag.h testPythag.c testPythag_CFLAGS = $(check_INCLUDES) testPythag_LDADD = $(top_builddir)/type/libFloatComplex.la \ $(top_builddir)/type/libDoubleComplex.la \ diff --git a/src/auxiliaryFunctions/pythag/Makefile.in b/src/auxiliaryFunctions/pythag/Makefile.in index 19328bc0..3592fcb7 100644 --- a/src/auxiliaryFunctions/pythag/Makefile.in +++ b/src/auxiliaryFunctions/pythag/Makefile.in @@ -225,7 +225,7 @@ check_INCLUDES = -I $(top_builddir)/auxiliaryFunctions/includes \ # # -*- Pythag Tests -*- # -testPythag_SOURCES = testPythag.c +testPythag_SOURCES = testPythag.h testPythag.c testPythag_CFLAGS = $(check_INCLUDES) testPythag_LDADD = $(top_builddir)/type/libFloatComplex.la \ $(top_builddir)/type/libDoubleComplex.la \ diff --git a/src/auxiliaryFunctions/rand/Makefile.am b/src/auxiliaryFunctions/rand/Makefile.am index 95f24f98..26421b2b 100644 --- a/src/auxiliaryFunctions/rand/Makefile.am +++ b/src/auxiliaryFunctions/rand/Makefile.am @@ -44,7 +44,7 @@ TESTS = testRand # # -*- Rand Tests -*- # -testRand_SOURCES = testRand.c +testRand_SOURCES = testRand.h testRand.c testRand_CFLAGS = $(check_INCLUDES) testRand_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/type/libFloatComplex.la \ diff --git a/src/auxiliaryFunctions/rand/Makefile.in b/src/auxiliaryFunctions/rand/Makefile.in index 40cc6a87..10b45e6e 100644 --- a/src/auxiliaryFunctions/rand/Makefile.in +++ b/src/auxiliaryFunctions/rand/Makefile.in @@ -224,7 +224,7 @@ check_INCLUDES = -I $(top_builddir)/auxiliaryFunctions/includes \ # # -*- Rand Tests -*- # -testRand_SOURCES = testRand.c +testRand_SOURCES = testRand.h testRand.c testRand_CFLAGS = $(check_INCLUDES) testRand_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/type/libFloatComplex.la \ diff --git a/src/auxiliaryFunctions/sign/Makefile.am b/src/auxiliaryFunctions/sign/Makefile.am index 5e55ede6..5d47a0c9 100644 --- a/src/auxiliaryFunctions/sign/Makefile.am +++ b/src/auxiliaryFunctions/sign/Makefile.am @@ -46,7 +46,7 @@ TESTS = testSign # # -*- Sign Tests -*- # -testSign_SOURCES = testSign.c +testSign_SOURCES = testSign.h testSign.c testSign_CFLAGS = $(check_INCLUDES) testSign_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/type/libFloatComplex.la \ diff --git a/src/auxiliaryFunctions/sign/Makefile.in b/src/auxiliaryFunctions/sign/Makefile.in index cc521667..5fa06977 100644 --- a/src/auxiliaryFunctions/sign/Makefile.in +++ b/src/auxiliaryFunctions/sign/Makefile.in @@ -230,7 +230,7 @@ check_INCLUDES = -I $(top_builddir)/elementaryFunctions/includes \ # # -*- Sign Tests -*- # -testSign_SOURCES = testSign.c +testSign_SOURCES = testSign.h testSign.c testSign_CFLAGS = $(check_INCLUDES) testSign_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/type/libFloatComplex.la \ diff --git a/src/auxiliaryFunctions/size/Makefile.am b/src/auxiliaryFunctions/size/Makefile.am index 9d2148b4..dbb55823 100644 --- a/src/auxiliaryFunctions/size/Makefile.am +++ b/src/auxiliaryFunctions/size/Makefile.am @@ -35,7 +35,7 @@ TESTS = testSize # # -*- Size Tests -*- # -testSize_SOURCES = testSize.c +testSize_SOURCES = testSize.h testSize.c testSize_CFLAGS = $(check_INCLUDES) testSize_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/type/libFloatComplex.la \ diff --git a/src/auxiliaryFunctions/size/Makefile.in b/src/auxiliaryFunctions/size/Makefile.in index f5b14ea0..aa576fce 100644 --- a/src/auxiliaryFunctions/size/Makefile.in +++ b/src/auxiliaryFunctions/size/Makefile.in @@ -212,7 +212,7 @@ check_INCLUDES = -I $(top_builddir)/auxiliaryFunctions/includes \ # # -*- Size Tests -*- # -testSize_SOURCES = testSize.c +testSize_SOURCES = testSize.h testSize.c testSize_CFLAGS = $(check_INCLUDES) testSize_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/type/libFloatComplex.la \ diff --git a/src/auxiliaryFunctions/type/Makefile.am b/src/auxiliaryFunctions/type/Makefile.am index 32f7553d..c4cf0e7f 100644 --- a/src/auxiliaryFunctions/type/Makefile.am +++ b/src/auxiliaryFunctions/type/Makefile.am @@ -35,7 +35,7 @@ TESTS = testType # # -*- Type Tests -*- # -testType_SOURCES = testType.c +testType_SOURCES = testType.h testType.c testType_CFLAGS = $(check_INCLUDES) testType_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/type/libFloatComplex.la \ diff --git a/src/auxiliaryFunctions/type/Makefile.in b/src/auxiliaryFunctions/type/Makefile.in index 0519e917..093fdd32 100644 --- a/src/auxiliaryFunctions/type/Makefile.in +++ b/src/auxiliaryFunctions/type/Makefile.in @@ -212,7 +212,7 @@ check_INCLUDES = -I $(top_builddir)/auxiliaryFunctions/includes \ # # -*- Type Tests -*- # -testType_SOURCES = testType.c +testType_SOURCES = testType.h testType.c testType_CFLAGS = $(check_INCLUDES) testType_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/type/libFloatComplex.la \ |