summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/exp
diff options
context:
space:
mode:
Diffstat (limited to 'src/elementaryFunctions/exp')
-rw-r--r--src/elementaryFunctions/exp/Makefile47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/elementaryFunctions/exp/Makefile b/src/elementaryFunctions/exp/Makefile
deleted file mode 100644
index 3b0e8495..00000000
--- a/src/elementaryFunctions/exp/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:05:56 2007 jofret
-##
-## Copyright INRIA 2006
-##
-
-NAME = ../../lib/libExp.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 = sexps.c \
- dexps.c \
- cexps.c \
- zexps.c \
- sexpa.c \
- dexpa.c \
- cexpa.c \
- zexpa.c
-
-HEAD = ../includes/exp.h
-OBJ = $(SRC:.c=.o)
-
-all: $(NAME)
-
-$(NAME) : $(HEAD) $(OBJ)
- $(AR) $@ $(OBJ)
- $(RANLIB) $@
-
-clean:
- $(RM) $(OBJ)
-
-distclean: clean
- $(RM) $(NAME)
-
-re: clean all