diff options
author | jofret | 2007-02-23 17:07:39 +0000 |
---|---|---|
committer | jofret | 2007-02-23 17:07:39 +0000 |
commit | 870f1db45dae6e6d137b83bb4a4e5e9b47e73b89 (patch) | |
tree | 03c8aef4774ae44af3ba89781c47f6303bad42da /src/elementaryFunctions/sin/Makefile | |
parent | 9d6ec22d29413e2b662acd523c1171a2228f13f6 (diff) | |
download | scilab2c-870f1db45dae6e6d137b83bb4a4e5e9b47e73b89.tar.gz scilab2c-870f1db45dae6e6d137b83bb4a4e5e9b47e73b89.tar.bz2 scilab2c-870f1db45dae6e6d137b83bb4a4e5e9b47e73b89.zip |
* src/elementaryFunctions/includes :
Add includes directory for profiling functions.
* src/elementaryFunctions/*/*.h :
Moving headers to includes.
* src/elementaryFunctions/*/*.c :
Better dependancies with includes.
* src/elementaryFunctions/*/Makedile :
Changing includes / headers / link.
Diffstat (limited to 'src/elementaryFunctions/sin/Makefile')
-rw-r--r-- | src/elementaryFunctions/sin/Makefile | 10 |
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) |