summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/tanh/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/elementaryFunctions/tanh/Makefile')
-rw-r--r--src/elementaryFunctions/tanh/Makefile47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/elementaryFunctions/tanh/Makefile b/src/elementaryFunctions/tanh/Makefile
deleted file mode 100644
index c37f631c..00000000
--- a/src/elementaryFunctions/tanh/Makefile
+++ /dev/null
@@ -1,47 +0,0 @@
-##
-## -*- makefile -*-
-##
-## Makefile
-## Made by Bruno JOFRET <bruno.jofret@inria.fr>
-##
-## Started on Thu Nov 30 16:33:40 2006 jofret
-## Last update Fri Feb 23 17:28:51 2007 jofret
-##
-## Copyright INRIA 2006
-##
-
-NAME = ../../lib/libTanh.a
-
-RM = rm -f
-CC = gcc
-INCLUDE = -I ../../type -I ../includes
-LINK = -L ../../lib
-CFLAGS = -Werror -Wall -pedantic -ansi $(INCLUDE) $(LINK) $(STANDARD)
-AR = ar cru
-RANLIB = ranlib
-
-SRC = stanhs.c \
- dtanhs.c \
- ctanhs.c \
- ztanhs.c \
- stanha.c \
- dtanha.c \
- ctanha.c \
- ztanha.c
-
-HEAD = ../includes/tanh.h
-OBJ = $(SRC:.c=.o)
-
-all: $(NAME)
-
-$(NAME) : $(HEAD) $(OBJ)
- $(AR) $@ $(OBJ)
- $(RANLIB) $@
-
-clean:
- $(RM) $(OBJ)
-
-distclean: clean
- $(RM) $(NAME)
-
-re: clean all