[pypy-svn] r27306 - pypy/dist/pypy/translator/c

arigo at codespeak.net arigo at codespeak.net
Tue May 16 23:10:32 CEST 2006


Author: arigo
Date: Tue May 16 23:10:31 2006
New Revision: 27306

Modified:
   pypy/dist/pypy/translator/c/genc.py
Log:
(arigo, pedronis)

add a profile target to our generated genc Makefile.



Modified: pypy/dist/pypy/translator/c/genc.py
==============================================================================
--- pypy/dist/pypy/translator/c/genc.py	(original)
+++ pypy/dist/pypy/translator/c/genc.py	Tue May 16 23:10:31 2006
@@ -797,4 +797,7 @@
 
 debug: clean
 \tmake CFLAGS="-g -pthread"
+
+profile: clean
+\tmake CFLAGS="-pg $(CFLAGS)" LDFLAGS="-pg $(LDFLAGS)"
 '''



More information about the Pypy-commit mailing list