Changeset 3682


Ignore:
Timestamp:
Oct 3, 2006, 2:51:26 PM (18 years ago)
Author:
jack
Message:

Removed phony targets from the SConstruct (.exp targets)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/SConstruct

    r3605 r3682  
    7272    # Prefer MinGW over MSVC
    7373    Tool('mingw')(env)
    74 
     74   
    7575    python_include = os.path.join(sys.exec_prefix, 'include')
    7676    # Windows installs need to be told the lib path and the python library name
     
    142142env.Install(mesh_install_dir, triangle)
    143143
    144 # Make phony .exp files if building with gcc, so the Install builder doesn't choke.
    145 if sys.platform == 'win32' and env['CC'] == 'gcc':
    146     env.Command(os.path.join(mesh_dir, 'triang.exp'), triang, Touch(os.path.join(mesh_dir, 'triang.exp')))
    147     env.Command(os.path.join(mesh_dir, 'triangle.exp'), triangle, Touch(os.path.join(mesh_dir, 'triangle.exp')))
    148 
    149144# Utilities
    150145util_dir = os.path.join(anuga_root, 'utilities')
Note: See TracChangeset for help on using the changeset viewer.