diff options
author | jofret | 2006-12-07 09:53:19 +0000 |
---|---|---|
committer | jofret | 2006-12-07 09:53:19 +0000 |
commit | aea460b1921614092539424b0633318617857ce7 (patch) | |
tree | 38a097eaae9fbd4c2961823d673dfa0ee8984f2a /src | |
parent | 3e98dbdcaa1d24986692e36246beeff12a4910c9 (diff) | |
download | scilab2c-aea460b1921614092539424b0633318617857ce7.tar.gz scilab2c-aea460b1921614092539424b0633318617857ce7.tar.bz2 scilab2c-aea460b1921614092539424b0633318617857ce7.zip |
little Makefile mistake
Diffstat (limited to 'src')
-rw-r--r-- | src/type/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/type/Makefile b/src/type/Makefile index 992ba32c..2c4a14b6 100644 --- a/src/type/Makefile +++ b/src/type/Makefile @@ -5,12 +5,11 @@ ## Made by Bruno JOFRET <bruno.jofret@inria.fr> ## ## Started on Thu Nov 30 16:33:40 2006 jofret -## Last update Mon Dec 4 17:24:37 2006 jofret +## Last update Thu Dec 7 10:53:28 2006 jofret ## ## Copyright INRIA 2006 ## -NAME = complex RM = rm -f CC = gcc CFLAGS = -Wall -pedantic -ansi @@ -24,13 +23,13 @@ LIBS = $(DCLIB) $(FCLIB) ### Double Complex -DCLIB = libDoubleComplex.a +DCLIB = ../lib/libDoubleComplex.a DCSRC = doubleComplex.c DCHEAD = doubleComplex.h DCOBJ = $(DCSRC:.c=.o) ### Float Complex -FCLIB = libFloatComplex.a +FCLIB = ../lib/libFloatComplex.a FCSRC = floatComplex.c FCHEAD = floatComplex.h FCOBJ = $(FCSRC:.c=.o) @@ -39,11 +38,11 @@ FCOBJ = $(FCSRC:.c=.o) all: $(LIBS) $(DCLIB) : $(DCHEAD) $(DCOBJ) - $(AR) $@ $< + $(AR) $@ $(DCOBJ) $(RANLIB) $@ $(FCLIB) : $(FCHEAD) $(FCOBJ) - $(AR) $@ $< + $(AR) $@ $(FCOBJ) $(RANLIB) $@ $(FCSRC) : $(DCSRC) |