summaryrefslogtreecommitdiff
path: root/src/auxiliaryFunctions/find
diff options
context:
space:
mode:
Diffstat (limited to 'src/auxiliaryFunctions/find')
-rw-r--r--src/auxiliaryFunctions/find/Makefile8
-rw-r--r--src/auxiliaryFunctions/find/cfinda.c3
-rw-r--r--src/auxiliaryFunctions/find/notFound.h18
3 files changed, 6 insertions, 23 deletions
diff --git a/src/auxiliaryFunctions/find/Makefile b/src/auxiliaryFunctions/find/Makefile
index 88ec08fc..ab3bb60e 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 Tue Feb 13 15:54:45 2007 jofret
+## Last update Wed Feb 14 14:07:02 2007 jofret
##
## Copyright INRIA 2006
##
@@ -14,9 +14,9 @@ NAME = ../../lib/libFind.a
RM = rm -f
CC = gcc
-INCLUDE = ../../type
-LINK = ../../lib
-CFLAGS = -Werror -Wall -pedantic -ansi -I $(INCLUDE) -L $(LINK) $(STANDARD)
+INCLUDE = -I ../../type -I ../../misc
+LINK = -L ../../lib
+CFLAGS = -Werror -Wall -pedantic -ansi $(INCLUDE) $(LINK) $(STANDARD)
AR = ar cru
RANLIB = ranlib
diff --git a/src/auxiliaryFunctions/find/cfinda.c b/src/auxiliaryFunctions/find/cfinda.c
index aa126296..19a9667f 100644
--- a/src/auxiliaryFunctions/find/cfinda.c
+++ b/src/auxiliaryFunctions/find/cfinda.c
@@ -5,7 +5,7 @@
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Tue Feb 13 16:46:42 2007 jofret
-** Last update Tue Feb 13 17:15:14 2007 jofret
+** Last update Wed Feb 14 17:09:19 2007 jofret
**
** Copyright INRIA 2007
*/
@@ -14,5 +14,6 @@
#include "notFound.h"
int cfinda(floatComplex* z, int size) {
+ /* FIXME : Dummy !! */
return NOT_FOUND;
}
diff --git a/src/auxiliaryFunctions/find/notFound.h b/src/auxiliaryFunctions/find/notFound.h
deleted file mode 100644
index 59d8c2fe..00000000
--- a/src/auxiliaryFunctions/find/notFound.h
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
-** -*- C -*-
-**
-** notFound.h
-** Made by Bruno JOFRET <bruno.jofret@inria.fr>
-**
-** Started on Thu Feb 8 10:12:17 2007 jofret
-** Last update Tue Feb 13 17:16:47 2007 jofret
-**
-** Copyright INRIA 2007
-*/
-
-#ifndef __NOT_FOUND_H__
-#define __NOT_FOUND_H__
-
-#define NOT_FOUND -1
-
-#endif /* !__NOT_FOUND_H__ */