bench-fibo

Unnamed repository; edit this file 'description' to name the repository.
git clone https://logand.com/git/bench-fibo.git/
Log | Files | Refs | README

commit 09fbfd26bba702cb7a624285ef259ccb704fd073
parent 55f49a7e56fb094e45fa7bfe978cdda7c11f8634
Author: Tomas Hlavaty <tom@logand.com>
Date:   Sat, 16 Oct 2010 14:03:20 +0200

Makefile fix to avoid lex -> c dependency

Diffstat:
MMakefile | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,5 +1,7 @@ all: fibo40 +.c.l: + fibo40: fibo40.c gcc -O2 -o fibo40 fibo40.c