GNUmakefile revision 4fd606d1f5abe38e1f42c38de1d2e895166bd0f4
148N/A## @file
148N/A# Windows makefile for 'Tests' module build.
148N/A#
148N/A# Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
148N/A# This program and the accompanying materials
148N/A# are licensed and made available under the terms and conditions of the BSD License
148N/A# which accompanies this distribution. The full text of the license may be found at
148N/A# http://opensource.org/licenses/bsd-license.php
148N/A#
148N/A# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
148N/A# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
148N/A#
148N/A
148N/Aall: test
148N/A
148N/Atest:
148N/A @python RunTests.py
148N/A
148N/Aclean:
148N/A find . -name '*.pyc' -exec rm '{}' ';'
148N/A
148N/A