SConscript (8335:9228e00459d4) SConscript (8594:0e77bd34385f)
1# -*- mode:python -*-
2
3# Copyright (c) 2004-2005 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

--- 890 unchanged lines hidden (view full) ---

899 else:
900 obj = env.SharedObject(source.tnode)
901
902 if extra_deps:
903 env.Depends(obj, extra_deps)
904
905 return obj
906
1# -*- mode:python -*-
2
3# Copyright (c) 2004-2005 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

--- 890 unchanged lines hidden (view full) ---

899 else:
900 obj = env.SharedObject(source.tnode)
901
902 if extra_deps:
903 env.Depends(obj, extra_deps)
904
905 return obj
906
907 sources = Source.get(main=False, skip_lib=False)
908 static_objs = [ make_obj(s, True) for s in sources ]
909 shared_objs = [ make_obj(s, False) for s in sources ]
907 static_objs = \
908 [ make_obj(s, True) for s in Source.get(main=False, skip_lib=False) ]
909 shared_objs = \
910 [ make_obj(s, False) for s in Source.get(main=False, skip_lib=False) ]
910
911 static_date = make_obj(date_source, static=True, extra_deps=static_objs)
912 static_objs.append(static_date)
913
914 shared_date = make_obj(date_source, static=False, extra_deps=shared_objs)
915 shared_objs.append(shared_date)
916
917 # First make a library of everything but main() so other programs can

--- 79 unchanged lines hidden ---
911
912 static_date = make_obj(date_source, static=True, extra_deps=static_objs)
913 static_objs.append(static_date)
914
915 shared_date = make_obj(date_source, static=False, extra_deps=shared_objs)
916 shared_objs.append(shared_date)
917
918 # First make a library of everything but main() so other programs can

--- 79 unchanged lines hidden ---