Page d'accueil Description du projet
#
#   Cedric Pradalier   2001
#   mail : http://cedric.pradalier.free.fr/mail.html  
#

all : prog test

prog : test_reg

test_reg : test.o linreg.o
    gcc -o test_reg linreg.o test.o

test.o : test.c linreg.h 
    gcc -c -o test.o test.c

linreg.o : linreg.c linreg.h
    gcc -c -o linreg.o linreg.c

test : prog
    ./test_reg

clean : 
    rm -f *.o
    rm -f test_reg