summaryrefslogtreecommitdiff
path: root/src/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/Makefile')
-rw-r--r--src/test/Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/test/Makefile b/src/test/Makefile
index 5d7378ff..951a1272 100644
--- a/src/test/Makefile
+++ b/src/test/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 Fri Dec 8 16:55:15 2006 jofret
+## Last update Mon Jan 29 17:17:19 2007 jofret
##
## Copyright INRIA 2006
##
@@ -16,14 +16,21 @@ RM = rm -f
CC = gcc
INCLUDE = ../type
LINK = ../lib
-LIBS = -lm -lSin -lCos
+LIBS = -lm \
+ -lCos -lCosh \
+ -lSin -lSinh \
+ -lTan -lTanh
CFLAGS = -Werror -Wall -pedantic -ansi
CLFLAGS = -I$(INCLUDE) -L$(LINK) $(LIBS)
AR = ar cru
RANLIB = ranlib
SRC = testCos.c \
+ testCosh.c \
testSin.c \
+ testSinh.c \
+ testTan.c \
+ testTanh.c \
test.c
HEAD = test.h