summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/sin/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/elementaryFunctions/sin/Makefile')
-rw-r--r--src/elementaryFunctions/sin/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/elementaryFunctions/sin/Makefile b/src/elementaryFunctions/sin/Makefile
index 1cfcc0fd..7b8d0f55 100644
--- a/src/elementaryFunctions/sin/Makefile
+++ b/src/elementaryFunctions/sin/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 Jan 31 11:58:56 2007 jofret
+## Last update Fri Feb 23 17:10:58 2007 jofret
##
## Copyright INRIA 2006
##
@@ -14,9 +14,9 @@ NAME = ../../lib/libSin.a
RM = rm -f
CC = gcc
-INCLUDE = ../../type
-LINK = ../../lib
-CFLAGS = -Werror -Wall -pedantic -ansi -I $(INCLUDE) -L $(LINK) $(STANDARD)
+INCLUDE = -I ../../type -I ../includes
+LINK = -L ../../lib
+CFLAGS = -Werror -Wall -pedantic -ansi $(INCLUDE) $(LINK) $(STANDARD)
AR = ar cru
RANLIB = ranlib
@@ -29,7 +29,7 @@ SRC = ssins.c \
csina.c \
zsina.c
-HEAD = sin.h
+HEAD = ../includes/sin.h
OBJ = $(SRC:.c=.o)
all: $(NAME)