diff options
Diffstat (limited to 'src/auxiliaryFunctions/find')
-rw-r--r-- | src/auxiliaryFunctions/find/Makefile | 6 | ||||
-rw-r--r-- | src/auxiliaryFunctions/find/cfinda.c | 5 | ||||
-rw-r--r-- | src/auxiliaryFunctions/find/dfinda.c | 4 | ||||
-rw-r--r-- | src/auxiliaryFunctions/find/sfinda.c | 4 | ||||
-rw-r--r-- | src/auxiliaryFunctions/find/zfinda.c | 5 |
5 files changed, 11 insertions, 13 deletions
diff --git a/src/auxiliaryFunctions/find/Makefile b/src/auxiliaryFunctions/find/Makefile index ab3bb60e..8c8a7293 100644 --- a/src/auxiliaryFunctions/find/Makefile +++ b/src/auxiliaryFunctions/find/Makefile @@ -5,7 +5,7 @@ ## Made by Bruno JOFRET <bruno.jofret@inria.fr> ## ## Started on Thu Nov 30 16:33:40 2006 jofret -## Last update Wed Feb 14 14:07:02 2007 jofret +## Last update Fri Feb 23 17:55:33 2007 jofret ## ## Copyright INRIA 2006 ## @@ -14,7 +14,7 @@ NAME = ../../lib/libFind.a RM = rm -f CC = gcc -INCLUDE = -I ../../type -I ../../misc +INCLUDE = -I ../../type -I ../../includes -I ../includes LINK = -L ../../lib CFLAGS = -Werror -Wall -pedantic -ansi $(INCLUDE) $(LINK) $(STANDARD) AR = ar cru @@ -25,7 +25,7 @@ SRC = sfinda.c \ cfinda.c \ zfinda.c -HEAD = find.h +HEAD = ../includes/find.h OBJ = $(SRC:.c=.o) all: $(NAME) diff --git a/src/auxiliaryFunctions/find/cfinda.c b/src/auxiliaryFunctions/find/cfinda.c index 19a9667f..d4dcc09e 100644 --- a/src/auxiliaryFunctions/find/cfinda.c +++ b/src/auxiliaryFunctions/find/cfinda.c @@ -5,13 +5,12 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Tue Feb 13 16:46:42 2007 jofret -** Last update Wed Feb 14 17:09:19 2007 jofret +** Last update Fri Feb 23 17:56:35 2007 jofret ** ** Copyright INRIA 2007 */ -#include "floatComplex.h" -#include "notFound.h" +#include "find.h" int cfinda(floatComplex* z, int size) { /* FIXME : Dummy !! */ diff --git a/src/auxiliaryFunctions/find/dfinda.c b/src/auxiliaryFunctions/find/dfinda.c index 8241a792..cc2f363b 100644 --- a/src/auxiliaryFunctions/find/dfinda.c +++ b/src/auxiliaryFunctions/find/dfinda.c @@ -5,12 +5,12 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Tue Feb 13 16:52:23 2007 jofret -** Last update Tue Feb 13 17:13:40 2007 jofret +** Last update Fri Feb 23 17:56:24 2007 jofret ** ** Copyright INRIA 2007 */ -#include "notFound.h" +#include "find.h" int dfinda(double* x, int size) { /* FIXME : Dummy !! */ diff --git a/src/auxiliaryFunctions/find/sfinda.c b/src/auxiliaryFunctions/find/sfinda.c index aab853c6..bb726d38 100644 --- a/src/auxiliaryFunctions/find/sfinda.c +++ b/src/auxiliaryFunctions/find/sfinda.c @@ -5,12 +5,12 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Tue Feb 13 16:53:03 2007 jofret -** Last update Tue Feb 13 17:13:30 2007 jofret +** Last update Fri Feb 23 17:56:15 2007 jofret ** ** Copyright INRIA 2007 */ -#include "notFound.h" +#include "find.h" int sfinda(float* x, int size) { /* FIXME : Dummy !! */ diff --git a/src/auxiliaryFunctions/find/zfinda.c b/src/auxiliaryFunctions/find/zfinda.c index e43cfa84..85cb421e 100644 --- a/src/auxiliaryFunctions/find/zfinda.c +++ b/src/auxiliaryFunctions/find/zfinda.c @@ -5,13 +5,12 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Tue Feb 13 16:51:44 2007 jofret -** Last update Tue Feb 13 17:15:42 2007 jofret +** Last update Fri Feb 23 17:56:02 2007 jofret ** ** Copyright INRIA 2007 */ -#include "doubleComplex.h" -#include "notFound.h" +#include "find.h" int zfinda(doubleComplex* z, int size) { /* FIXME : Dummy !! */ |