diff options
author | biouman <biouman> | 2001-04-27 10:37:22 +0000 |
---|---|---|
committer | biouman <biouman> | 2001-04-27 10:37:22 +0000 |
commit | f6d829b8eca64bd77f40e0c294d77f52f7338a93 (patch) | |
tree | 1e4b64240faa457f77b17814629a093467654e93 /Makefile | |
parent | b95356d4ad81bd4bd345a161f06321504d740979 (diff) |
*** empty log message ***
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -1,4 +1,10 @@ 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
\ No newline at end of file +clean: + rm -f *.o polynom + +CC=gcc +LDFLAGS=-lm +CFLAGS=-Wall -O3 + +polynom: exceptions.o hash.o parse.o main.o numbers.o pile.o polynom.o scalaires.o |