SConscript (9384:877293183bdf) SConscript (10196:be0e1724eb39)
1# -*- mode:python -*-
2
3# Copyright (c) 2007-2008 The Hewlett-Packard Development Company
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

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

307
308
309 # Add in files generated by the ISA description.
310 isa_desc_files = env.ISADesc('isa/main.isa')
311 for f in isa_desc_files:
312 # Add in python file dependencies that won't be caught otherwise
313 for pyfile in python_files:
314 env.Depends(f, "isa/insts/%s" % pyfile)
1# -*- mode:python -*-
2
3# Copyright (c) 2007-2008 The Hewlett-Packard Development Company
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

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

307
308
309 # Add in files generated by the ISA description.
310 isa_desc_files = env.ISADesc('isa/main.isa')
311 for f in isa_desc_files:
312 # Add in python file dependencies that won't be caught otherwise
313 for pyfile in python_files:
314 env.Depends(f, "isa/insts/%s" % pyfile)
315 # Only non-header files need to be compiled.
316 if not f.path.endswith('.hh'):
317 Source(f)