diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-03-15 12:30:03 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-03-15 12:30:03 +0530 |
commit | 8cfdb7e0560ab27e70a1d2e898fb4a0a67a13c70 (patch) | |
tree | 7eb91b35e7d04f1c4889563b3c922e512cfe2045 /Makefile.in | |
parent | d22ca8cdfb98001d03772ef264b244930d439b3f (diff) | |
download | glibc-8cfdb7e0560ab27e70a1d2e898fb4a0a67a13c70.tar.gz glibc-8cfdb7e0560ab27e70a1d2e898fb4a0a67a13c70.tar.xz glibc-8cfdb7e0560ab27e70a1d2e898fb4a0a67a13c70.zip |
Framework for performance benchmarking of functions
See benchtests/Makefile to know how to use it.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index d73a78f8e9..df75b8f0c4 100644 --- a/Makefile.in +++ b/Makefile.in @@ -3,7 +3,7 @@ srcdir = @srcdir@ # Uncomment the line below if you want to do parallel build. # PARALLELMFLAGS = -j 4 -.PHONY: all install +.PHONY: all install bench all .DEFAULT: $(MAKE) -r PARALLELMFLAGS="$(PARALLELMFLAGS)" -C $(srcdir) objdir=`pwd` $@ @@ -11,3 +11,6 @@ all .DEFAULT: install: LANGUAGE=C LC_ALL=C; export LANGUAGE LC_ALL; \ $(MAKE) -r PARALLELMFLAGS="$(PARALLELMFLAGS)" -C $(srcdir) objdir=`pwd` $@ + +bench: + $(MAKE) -C $(srcdir)/benchtests $(PARALLELMFLAGS) objdir=`pwd` $@ |