From a1dfd0b8766c1d3f6259ca4e321f5385104167c6 Mon Sep 17 00:00:00 2001 From: Russel Winder Date: Wed, 5 Aug 2009 09:28:20 +0100 Subject: [PATCH] Change to shorter all lowercase targets for SCons command line invocation. --- SConstruct | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SConstruct b/SConstruct index 2de9176..f722fd3 100644 --- a/SConstruct +++ b/SConstruct @@ -140,7 +140,7 @@ else : libelf = SConscript ( 'libs/elf/SConscript' , variant_dir = buildDirectory + '/lib/elf' , duplicate = 0 , exports = { 'environment' : libraryEnvironment } ) Depends ( libelf , libraryEnvironment['configFiles'] ) - Alias ( 'libraries' , crts.values ( ) + libs.values ( ) + [ libelf ] ) + Alias ( 'libs' , crts.values ( ) + libs.values ( ) + [ libelf ] ) ########## Build the kernel ######################## @@ -187,7 +187,7 @@ else : Depends ( taskLibraries , taskSupportLibraryEnvironment['configFiles'] ) - Alias ( 'taskLibraries' , taskLibraries ) + Alias ( 'tasklibs' , taskLibraries ) tasksEnvironment = baseEnvironment.Clone ( CC = 'arm-none-linux-gnueabi-gcc' , @@ -220,9 +220,9 @@ Explicit targets are: configure -- configure the build area ready for a build. - libraries -- build the support library. + libs -- build the support library. kernel -- build the kernel. - taskLibraries -- build all the support libraries for the tasks. + tasklibs -- build all the support libraries for the tasks. tasks -- build all the tasks. The default target is to compile everything and to do a final link.