2010-03-04 12:57:31 +01:00
|
|
|
## @file
|
2013-08-23 04:18:16 +02:00
|
|
|
# GNU/Linux makefile for 'Tests' module build.
|
2010-03-04 12:57:31 +01:00
|
|
|
#
|
2010-05-18 07:04:32 +02:00
|
|
|
# Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:03:11 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2010-03-04 12:57:31 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
all: test
|
|
|
|
|
|
|
|
test:
|
2018-12-28 09:25:04 +01:00
|
|
|
@if command -v $(PYTHON_COMMAND) >/dev/null 1; then $(PYTHON_COMMAND) RunTests.py; else python RunTests.py; fi
|
2010-03-04 12:57:31 +01:00
|
|
|
|
|
|
|
clean:
|
|
|
|
find . -name '*.pyc' -exec rm '{}' ';'
|
|
|
|
|