build only the main binary by default
authorEvan Martin <martine@danga.com>
Tue, 6 Sep 2011 20:00:38 +0000 (13:00 -0700)
committerEvan Martin <martine@danga.com>
Tue, 6 Sep 2011 20:00:38 +0000 (13:00 -0700)
configure.py

index fa4f0d6..7498ae3 100755 (executable)
@@ -209,5 +209,9 @@ n.rule('configure',
        command='./configure.py')
 n.build('build.ninja', 'configure',
         implicit='configure.py')
+n.newline()
+
+n.comment('Build only the main binary by default.')
+n.default('ninja')
 
 print 'wrote %s.' % BUILD_FILENAME