Simplified loader, elf, and c library SConscripts

This commit is contained in:
Bahadir Balban
2009-09-14 19:15:32 +03:00
parent e08ab58b09
commit 0142677c81
5 changed files with 51 additions and 14 deletions

View File

@@ -9,16 +9,8 @@ from os.path import join
Import('env')
# Get global paths
PROJRELROOT = '../'
sys.path.append(PROJRELROOT)
e = env.Clone()
src = Glob('*.[cS]')
objs = e.Object(src)
objs = env.Object(src)
Return('objs')