mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
Make the coding style more consistent with PEP-8.
This commit is contained in:
@@ -17,13 +17,13 @@
|
||||
#
|
||||
# Author: Russel Winder
|
||||
|
||||
Import ( 'environment' )
|
||||
Import('environment')
|
||||
|
||||
e = environment.Clone ( )
|
||||
e.Append ( LINKFLAGS = [ '-Ttasks/test0/include/linker.lds' ] )
|
||||
e = environment.Clone()
|
||||
e.Append(LINKFLAGS = ['-Ttasks/test0/include/linker.lds'])
|
||||
|
||||
objects = e.StaticObject ( Glob ( '*.c' ) + Glob ( 'src/*.c' ) )
|
||||
Depends ( objects , e['configFiles'] )
|
||||
library = e.Program ( 'test0' , objects + [ e['crt0'] ] )
|
||||
objects = e.StaticObject(Glob('*.c') + Glob('src/*.c'))
|
||||
Depends(objects, e['configFiles'])
|
||||
library = e.Program('test0', objects + [e['crt0']])
|
||||
|
||||
Return ( 'library' )
|
||||
Return('library')
|
||||
|
||||
Reference in New Issue
Block a user