diff options
author | xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e> | 2010-02-17 13:55:59 +0000 |
---|---|---|
committer | xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e> | 2010-02-17 13:55:59 +0000 |
commit | 47ff904d56d915387fd701480329ea19ca2cc68b (patch) | |
tree | a6d659ff793555c5c185a1949aa22644811ae147 /test/c | |
parent | 6224148fdd809170d138216d72b8e6180d626aec (diff) |
Typo in Makefile
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1254 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'test/c')
-rw-r--r-- | test/c/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/c/Makefile b/test/c/Makefile index 1284d98..3f2df78 100644 --- a/test/c/Makefile +++ b/test/c/Makefile @@ -47,12 +47,12 @@ test_gcc: done time_gcc: - @for i in $(BENCHS); do \ + @for i in $(PROGS); do \ echo -n "$$i: "; $(TIME) ./$$i.gcc; \ done time_compcert: - @for i in $(BENCHS); do \ + @for i in $(PROGS); do \ echo -n "$$i: "; $(TIME) ./$$i.compcert; \ done |