summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/acos
diff options
context:
space:
mode:
authorjofret2007-03-23 16:07:35 +0000
committerjofret2007-03-23 16:07:35 +0000
commite6dbdbebea2d3f0da1e636ea40de35f382c71e61 (patch)
tree0ff7c3a0b8fa85bd9e44a099b2d0f99bd2011438 /src/elementaryFunctions/acos
parent6e034d2dcf27cf7f078a5efe435105ee5cc731b3 (diff)
downloadscilab2c-e6dbdbebea2d3f0da1e636ea40de35f382c71e61.tar.gz
scilab2c-e6dbdbebea2d3f0da1e636ea40de35f382c71e61.tar.bz2
scilab2c-e6dbdbebea2d3f0da1e636ea40de35f382c71e61.zip
AutoTools !!
Diffstat (limited to 'src/elementaryFunctions/acos')
-rw-r--r--src/elementaryFunctions/acos/Makefile47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/elementaryFunctions/acos/Makefile b/src/elementaryFunctions/acos/Makefile
deleted file mode 100644
index b6acc97f..00000000
--- a/src/elementaryFunctions/acos/Makefile
+++ /dev/null
@@ -1,47 +0,0 @@
-##
-## -*- makefile -*-
-##
-## Makefile
-## Made by Bruno JOFRET <bruno.jofret@inria.fr>
-##
-## Started on Fri Jan 5 10:19:16 2007 jofret
-## Last update Fri Feb 23 16:38:02 2007 jofret
-##
-## Copyright INRIA 2007
-##
-
-NAME = ../../lib/libAcos.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 = sacoss.c \
- dacoss.c \
- cacoss.c \
- zacoss.c \
- sacosa.c \
- dacosa.c \
- cacosa.c \
- zacosa.c
-
-HEAD = ../includes/acos.h
-OBJ = $(SRC:.c=.o)
-
-all: $(NAME)
-
-$(NAME) : $(HEAD) $(OBJ)
- $(AR) $@ $(OBJ)
- $(RANLIB) $@
-
-clean:
- $(RM) $(OBJ)
-
-distclean: clean
- $(RM) $(NAME)
-
-re: clean all