[llvm-commits] [hlvm] r38205 - /hlvm/trunk/Makefile

Reid Spencer reid at x10sys.com
Sat Jul 7 17:01:08 PDT 2007


Author: reid
Date: Sat Jul  7 19:01:08 2007
New Revision: 38205

URL: http://llvm.org/viewvc/llvm-project?rev=38205&view=rev
Log:
Add debug, optimized, and release targets

Modified:
    hlvm/trunk/Makefile

Modified: hlvm/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/Makefile?rev=38205&r1=38204&r2=38205&view=diff

==============================================================================
--- hlvm/trunk/Makefile (original)
+++ hlvm/trunk/Makefile Sat Jul  7 19:01:08 2007
@@ -13,6 +13,16 @@
 all:
 	scons -Q
 
+debug:
+	scons -Q mode=debug debug=1 assertions=1 optimized=0 inline=0 small=0
+
+optimized:
+	scons -Q mode=optimized debug=0 assertions=1 optimized=1 inline=1 \
+	small=0
+
+release:
+	scons -Q mode=release debug=0 assertions=0 optimized=1 inline=1 small=1
+
 check:  all
 	scons -Q check
 





More information about the llvm-commits mailing list