diff options
author | jofret | 2007-02-23 17:07:02 +0000 |
---|---|---|
committer | jofret | 2007-02-23 17:07:02 +0000 |
commit | 9d6ec22d29413e2b662acd523c1171a2228f13f6 (patch) | |
tree | 94e6727d5c82421bcbf762fea2d6c64cc3083394 /src/auxiliaryFunctions/sign | |
parent | eb181bbd6e625b920035be1f7024c993ba3bc73d (diff) | |
download | scilab2c-9d6ec22d29413e2b662acd523c1171a2228f13f6.tar.gz scilab2c-9d6ec22d29413e2b662acd523c1171a2228f13f6.tar.bz2 scilab2c-9d6ec22d29413e2b662acd523c1171a2228f13f6.zip |
* src/auxiliaryFunctions/includes :
Add includes directory for profiling functions.
* src/auxiliaryFunctions/*/*.h :
Moving headers to includes.
* src/auxiliaryFunctions/*/*.c :
Better dependancies with includes.
* src/auxiliaryFunctions/*/Makedile :
Changing includes / headers / link.
Diffstat (limited to 'src/auxiliaryFunctions/sign')
-rw-r--r-- | src/auxiliaryFunctions/sign/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/auxiliaryFunctions/sign/Makefile b/src/auxiliaryFunctions/sign/Makefile index d6d1dd7d..0d3450c8 100644 --- a/src/auxiliaryFunctions/sign/Makefile +++ b/src/auxiliaryFunctions/sign/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 Thu Feb 8 10:11:59 2007 jofret +## Last update Fri Feb 23 17:54:40 2007 jofret ## ## Copyright INRIA 2006 ## @@ -14,16 +14,16 @@ NAME = ../../lib/libSign.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 SRC = ssigns.c \ dsigns.c -HEAD = sign.h +HEAD = ../includes/sign.h OBJ = $(SRC:.c=.o) all: $(NAME) |