blob: c188edd48898face94bade28f89f756f7399e641 (
plain)
1
2
3
4
|
all: polynom
polynom: exceptions.c hash.c interface.c main.c numbers.c pile.c polynom.c scalaires.c
gcc -o polynom exceptions.c hash.c interface.c main.c numbers.c pile.c polynom.c scalaires.c -lm
|